From 72c2d8ba26240b21c0b583a7fe7fdb301b51f3a1 Mon Sep 17 00:00:00 2001 From: flewkey Date: Tue, 28 May 2019 08:48:00 -0700 Subject: [PATCH] Don't tell users to ask a moderator if they can set their home themselves --- src/party/_2a03/command/HomeCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/party/_2a03/command/HomeCommand.java b/src/party/_2a03/command/HomeCommand.java index 2ff2ada..efcc6d3 100644 --- a/src/party/_2a03/command/HomeCommand.java +++ b/src/party/_2a03/command/HomeCommand.java @@ -20,7 +20,7 @@ public class HomeCommand { PlayerData player = Config.getPlayer(source.getSource().func_197035_h().func_110124_au().toString()); PlayerPosition position = player.getHome(); if (position.y == -1) { - source.getSource().func_197030_a(new TranslationTextComponent("Home not found, ask a moderator to set it"), false); + source.getSource().func_197030_a(new TranslationTextComponent("Home not found, do /home set"), false); return 1; } Set set = EnumSet.noneOf(SPlayerPositionLookPacket.Flags.class);