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 15:23:46 +02:00
Ursprung 1a1f7b49b3
Commit 399171f58e

Datei anzeigen

@ -40,15 +40,12 @@ public class DepthCounterListener implements Listener {
@EventHandler
public void onEntityExplode(EntityExplodeEvent event) {
Region region = Region.getRegion(event.getLocation());
boolean testblock = event.blockList().stream().anyMatch(block -> region.inRegion(block.getLocation(), RegionType.TESTBLOCK, RegionExtensionType.NORMAL));
boolean testblock = event.blockList().stream().anyMatch(block -> region.inRegion(block.getLocation(), RegionType.TESTBLOCK, RegionExtensionType.EXTENSION));
if (!testblock) {
return;
}
if (!DepthCounter.depthMap.containsKey(region)) {
DepthCounter.depthMap.put(region, new HashSet<>());
}
DepthCounter.depthMap.computeIfAbsent(region, r -> new HashSet<>());
Set<Depth> depthSet = DepthCounter.depthMap.get(region);
for (Depth depth : depthSet) {
if (depth.update(event.blockList())) {