Fix bug in StorageAlertModule message

This commit is contained in:
noil 2020-12-14 15:06:25 -05:00
parent 0af54c274e
commit 8655c5b2db
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}