From 9adb4e4d92b7302c6c01de02059ddf916185da33 Mon Sep 17 00:00:00 2001 From: Bukkit/Spigot Date: Fri, 18 Feb 2011 16:28:42 +0000 Subject: [PATCH] Location.getBlock() helper method By: Dinnerbone --- paper-api/src/main/java/org/bukkit/Location.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/paper-api/src/main/java/org/bukkit/Location.java b/paper-api/src/main/java/org/bukkit/Location.java index 7316ea33a8..85f2c71401 100644 --- a/paper-api/src/main/java/org/bukkit/Location.java +++ b/paper-api/src/main/java/org/bukkit/Location.java @@ -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 *