订单优化

This commit is contained in:
hahwu 2025-09-16 18:55:42 +08:00
parent 1d0a1f17b4
commit 5b2813d875

View File

@ -462,6 +462,9 @@ func ShuffleColor(List []string, Last string) []string {
List = append(List, v[2])
}
}
if List[0] == Last {
List[0], List[1] = List[1], List[0]
}
return List
}