From 8655c5b2dbba97c722e9e8211a11945b1a985c8f Mon Sep 17 00:00:00 2001 From: noil Date: Mon, 14 Dec 2020 15:06:25 -0500 Subject: [PATCH] Fix bug in StorageAlertModule message --- .../rigamortis/seppuku/impl/module/misc/StorageAlertModule.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/me/rigamortis/seppuku/impl/module/misc/StorageAlertModule.java b/src/main/java/me/rigamortis/seppuku/impl/module/misc/StorageAlertModule.java index b5145fe..ae6721b 100644 --- a/src/main/java/me/rigamortis/seppuku/impl/module/misc/StorageAlertModule.java +++ b/src/main/java/me/rigamortis/seppuku/impl/module/misc/StorageAlertModule.java @@ -87,7 +87,7 @@ public final class StorageAlertModule extends Module { } if (foundStorage.size() > 0) { - final String message = foundStorage.size() + " storage blocks located at X: " + position.x + " Z: " + position.y * 16; + final String message = foundStorage.size() + " storage blocks located at X: " + position.x + " Z: " + position.y; if (this.mode.getValue() == Mode.CHAT || this.mode.getValue() == Mode.BOTH) { Seppuku.INSTANCE.logChat(ChatFormatting.YELLOW + message); }