[ci skip] Cleanup events (#10202)
This commit is contained in:
@@ -3948,10 +3948,6 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
||||
+ return new Location(entity.getCommandSenderWorld().getWorld(), entity.getX(), entity.getY(), entity.getZ());
|
||||
+ }
|
||||
+
|
||||
+ public static org.bukkit.block.Block toBukkitBlock(Level world, BlockPos pos) {
|
||||
+ return world.getWorld().getBlockAt(pos.getX(), pos.getY(), pos.getZ());
|
||||
+ }
|
||||
+
|
||||
+ public static BlockPos toBlockPosition(Location loc) {
|
||||
+ return new BlockPos(loc.getBlockX(), loc.getBlockY(), loc.getBlockZ());
|
||||
+ }
|
||||
|
||||
Reference in New Issue
Block a user