3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-07 00:22:51 +02:00

A BlockSnapot does not always have a location in the InteractBlockEvent

Dieser Commit ist enthalten in:
Wyatt Childers 2016-04-16 17:18:48 -04:00
Ursprung a50e337224
Commit 330523bac4

Datei anzeigen

@ -154,7 +154,13 @@ public class SpongeWorldEdit {
com.sk89q.worldedit.world.World world = player.getWorld();
BlockSnapshot targetBlock = event.getTargetBlock();
Location<World> loc = targetBlock.getLocation().get();
Optional<Location<World>> optLoc = targetBlock.getLocation();
if (!optLoc.isPresent()) {
return;
}
Location<World> loc = optLoc.get();
BlockType interactedType = targetBlock.getState().getType();
if (event instanceof InteractBlockEvent.Primary) {