StorageAlert: Remove position from notification

This commit is contained in:
noil 2020-12-26 17:10:13 -05:00
parent 1dc343ee01
commit 5cf588cfd8

View File

@ -92,7 +92,7 @@ public final class StorageAlertModule extends Module {
if (this.commandsModule == null) {
this.commandsModule = (CommandsModule) Seppuku.INSTANCE.getModuleManager().find(CommandsModule.class);
} else {
final TextComponentString textComponent = new TextComponentString(ChatFormatting.YELLOW + message + "at X: " + position.x + " Z: " + position.y);
final TextComponentString textComponent = new TextComponentString(ChatFormatting.YELLOW + message + " at X: " + position.x + " Z: " + position.y);
textComponent.appendSibling(new TextComponentString("(*)")
.setStyle(new Style()
.setHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, new TextComponentString("\2476" + "Create a waypoint for this position.")))