Location.getBlock() helper method
This commit is contained in:
parent
2188275a00
commit
1e94bb16f5
@ -1,6 +1,7 @@
|
||||
|
||||
package org.bukkit;
|
||||
|
||||
import org.bukkit.block.Block;
|
||||
import org.bukkit.util.Vector;
|
||||
|
||||
/**
|
||||
@ -45,6 +46,15 @@ public class Location implements Cloneable {
|
||||
return world;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the block at the represented location
|
||||
*
|
||||
* @return Block at the represented location
|
||||
*/
|
||||
public Block getBlock() {
|
||||
return world.getBlockAt(getBlockX(), getBlockY(), getBlockZ());
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the x-coordinate of this location
|
||||
*
|
||||
|
Loading…
x
Reference in New Issue
Block a user