SteamWar/BauSystem2.0
Archiviert
12
0

Fix NPE
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Signed-off-by: yoyosource <yoyosource@nidido.de>
Dieser Commit ist enthalten in:
yoyosource 2022-07-21 14:02:45 +02:00
Ursprung 8e28422b8f
Commit 662982f20e

Datei anzeigen

@ -79,7 +79,7 @@ public class SimulatorPreviewStorage {
public void recalculate(TNTSimulator tntSimulator) {
Pair<Record, Set<Player>> pair = previews.get(tntSimulator);
if (previews == null) return;
if (pair == null) return;
pair.setKey(SimulatorPreview.impl.simulate(tntSimulator));
pair.getValue().forEach(player -> {
Pair<TNTSimulator, ShowMode<TNTPosition>> setPair = showModes.get(player);