SteamWar/BauSystem2.0
Archiviert
12
0

Update DepthCounterListener to count extension area as well

Signed-off-by: yoyosource <yoyosource@nidido.de>
Dieser Commit ist enthalten in:
yoyosource 2021-05-24 16:18:15 +02:00
Ursprung 7eb642793c
Commit cef509a9ce

Datei anzeigen

@ -42,7 +42,7 @@ public class DepthCounterListener implements Listener {
return;
}
DepthCounter.depthMap.computeIfAbsent(region, r -> new HashSet<>());
DepthCounter.depthMap.putIfAbsent(region, new HashSet<>());
Set<Depth> depthSet = DepthCounter.depthMap.get(region);
for (Depth depth : depthSet) {
if (depth.update(event.blockList())) {