SteamWar/BauSystem2.0
Archiviert
12
0

Fix Simulator move all with multiple prime phases
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Signed-off-by: yoyosource <yoyosource@nidido.de>
Dieser Commit ist enthalten in:
yoyosource 2022-04-09 23:12:15 +02:00
Ursprung a242cf2321
Commit bf1dbd5bb2

Datei anzeigen

@ -312,9 +312,9 @@ public class TNTSimulator {
}
private void updatePosition(Set<TNTSpawn> tntSpawns, Consumer<Vector> positionChanger) {
Set<Vector> vectors = new HashSet<>();
Map<Vector, Boolean> vectors = new IdentityHashMap<>();
for (TNTSpawn tntSpawn : tntSpawns) {
if (vectors.add(tntSpawn.position)) {
if (vectors.put(tntSpawn.position, true) == null) {
positionChanger.accept(tntSpawn.position);
}
}