From 0b29936958fd91dec0b4c4360866cb08bfb273d8 Mon Sep 17 00:00:00 2001 From: Tobias Ottenweller Date: Sat, 27 Jul 2013 12:03:38 +0200 Subject: [PATCH] Changed some text getting displayed while executing the info command. --- src/de/craftinc/gates/commands/CommandInfo.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/de/craftinc/gates/commands/CommandInfo.java b/src/de/craftinc/gates/commands/CommandInfo.java index d8893ee..9395db2 100644 --- a/src/de/craftinc/gates/commands/CommandInfo.java +++ b/src/de/craftinc/gates/commands/CommandInfo.java @@ -61,14 +61,14 @@ public class CommandInfo extends BaseCommand sendMessage(openHiddenMessage); if (gate.getLocation() != null) - sendMessage(ChatColor.DARK_AQUA + "from: " + ChatColor.AQUA + "( " + (int)gate.getLocation().getX() + + sendMessage(ChatColor.DARK_AQUA + "location: " + ChatColor.AQUA + "( " + (int)gate.getLocation().getX() + " | " + (int)gate.getLocation().getY() + " | " + (int)gate.getLocation().getZ() + " ) in " + gate.getLocation().getWorld().getName()); else sendMessage(ChatColor.DARK_AQUA + "NOTE: this gate has no location"); if (gate.getExit() != null) - sendMessage(ChatColor.DARK_AQUA + "to: " + ChatColor.AQUA + "( " + (int)gate.getExit().getX() + " | " + sendMessage(ChatColor.DARK_AQUA + "exit: " + ChatColor.AQUA + "( " + (int)gate.getExit().getX() + " | " + (int)gate.getExit().getY() + " | " + (int)gate.getExit().getZ() + " ) in " + gate.getExit().getWorld().getName()); else