SteamWar/BauSystem
Archiviert
13
0

Merge pull request 'Fix Region with null testblock' (#162) from FixTestblockNull into master

Reviewed-by: Lixfel <lixfel@steamwar.de>
Dieser Commit ist enthalten in:
YoyoNow 2021-01-20 11:07:51 +01:00
Commit 47589eab59
2 geänderte Dateien mit 10 neuen und 2 gelöschten Zeilen

Datei anzeigen

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

Datei anzeigen

@ -88,6 +88,10 @@ public class Region {
prototype.reset(this, schem);
}
public boolean hasTestblock() {
return prototype.hasTestblock();
}
public void resetTestblock(Schematic schem) throws IOException, NoClipboardException{
prototype.resetTestblock(this, schem);
}
@ -167,7 +171,7 @@ public class Region {
paste(schem.load(), x, y, z, rotate);
}
public boolean hasProtection(){
public boolean hasProtection() {
return protectSchematic != null;
}
@ -181,6 +185,10 @@ public class Region {
paste(schem.load(), x, y, z, rotate);
}
public boolean hasTestblock() {
return testblock != null;
}
public void resetTestblock(Region region, Schematic schem) throws IOException, NoClipboardException {
testblock.reset(region, schem);
}