From 2d4cf76825aa35733abcd9d6f2e20550f9065c1c Mon Sep 17 00:00:00 2001 From: Sid Shakal Date: Wed, 16 Mar 2016 20:38:24 -0500 Subject: [PATCH] ... (completing the previous style fix) Not sure how I missed this one. (Well, sure I do. I used the GitHub editor for the re-casing of the variable name. Noob mistake.) --- src/main/java/com/gmail/nossr50/util/Misc.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/gmail/nossr50/util/Misc.java b/src/main/java/com/gmail/nossr50/util/Misc.java index 93337f2e4..60fa0e2d7 100644 --- a/src/main/java/com/gmail/nossr50/util/Misc.java +++ b/src/main/java/com/gmail/nossr50/util/Misc.java @@ -80,7 +80,7 @@ public final class Misc { * @return A {@link Location} lying at the center of the block */ public static Location getBlockCenter(BlockState blockState) { - return blockstate.getLocation().add(0.5, 0.5, 0.5); + return blockState.getLocation().add(0.5, 0.5, 0.5); } public static void dropItems(Location location, Collection drops) {