SteamWar/BauSystem
Archiviert
13
0

Fixing Tracer remove

Dieser Commit ist enthalten in:
Lixfel 2019-12-31 16:25:00 +01:00
Ursprung 77fe1090c1
Commit 307f9f79e7

Datei anzeigen

@ -14,7 +14,7 @@ class TNTTracer_15 {
static void remove(Map<TNTPrimed, LinkedList<Location>> locations, TNTPrimed tnt){ static void remove(Map<TNTPrimed, LinkedList<Location>> locations, TNTPrimed tnt){
Material material = tnt.getLocation().getBlock().getType(); Material material = tnt.getLocation().getBlock().getType();
if(material == Material.WATER) if(material == Material.RED_STAINED_GLASS)
locations.remove(tnt); locations.remove(tnt);
} }