diff --git a/src/main/java/org/bukkit/block/BlockState.java b/src/main/java/org/bukkit/block/BlockState.java
index 65de77d3..7e181017 100644
--- a/src/main/java/org/bukkit/block/BlockState.java
+++ b/src/main/java/org/bukkit/block/BlockState.java
@@ -1,6 +1,7 @@
package org.bukkit.block;
import org.bukkit.Chunk;
+import org.bukkit.Location;
import org.bukkit.Material;
import org.bukkit.World;
import org.bukkit.material.MaterialData;
@@ -78,6 +79,13 @@ public interface BlockState {
*/
int getZ();
+ /**
+ * Gets the location of this block
+ *
+ * @return location
+ */
+ Location getLocation();
+
/**
* Gets the chunk which contains this block
*
@@ -109,8 +117,8 @@ public interface BlockState {
/**
* Attempts to update the block represented by this state, setting it to the
- * new values as defined by this state.
- *
+ * new values as defined by this state.
+ *