SteamWar/BauSystem
Archiviert
13
0

Hotfix CommandProtect

Dieser Commit ist enthalten in:
yoyosource 2021-04-10 23:30:03 +02:00
Ursprung f3b1d0a8b2
Commit bdf5b9d808

Datei anzeigen

@ -115,7 +115,7 @@ public class CommandProtect extends SWCommand implements Listener {
@EventHandler
public void onExplode(EntityExplodeEvent event) {
Region region = Region.getRegion(event.getLocation());
if (!region.isProtect() && !region.hasProtection()) {
if (!region.isProtect() || !region.hasProtection()) {
return;
}
event.blockList().removeIf(block -> {