SteamWar/BauSystem
Archiviert
13
0

Hotfix region bug

Dieser Commit ist enthalten in:
Lixfel 2021-01-16 09:11:06 +01:00
Ursprung df63358d8f
Commit cbc8a919a6
2 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen

Datei anzeigen

@ -46,7 +46,7 @@ public class CommandReset implements CommandExecutor {
} }
for(Region region : Region.getRegions()){ for(Region region : Region.getRegions()){
if(region.inRegion(player.getLocation()) && region.hasProtection()){ if(region.inRegion(player.getLocation())){
try { try {
if(args.length > 0){ if(args.length > 0){
Schematic schem = Schematic.getSchemFromDB(args[0], player.getUniqueId()); Schematic schem = Schematic.getSchemFromDB(args[0], player.getUniqueId());

Datei anzeigen

@ -46,7 +46,7 @@ public class CommandTestblock implements CommandExecutor {
} }
for(Region region : Region.getRegions()){ for(Region region : Region.getRegions()){
if(region.inRegion(player.getLocation()) && region.hasProtection()){ if(region.inRegion(player.getLocation())){
try { try {
Schematic schem = null; Schematic schem = null;
if(args.length > 0){ if(args.length > 0){