summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKHobbits <rob@khobbits.co.uk>2012-04-04 18:19:39 +0100
committerKHobbits <rob@khobbits.co.uk>2012-04-04 18:19:39 +0100
commitfaabcb1bb9cc7c5c76bf8d09200b9546f53c1729 (patch)
tree1bec5d0b4c56849b8de03996e66cc87f5ba840ed
parentb8c87c37cdefc0be43054158727eee74a9d8af3c (diff)
downloadEssentials-faabcb1bb9cc7c5c76bf8d09200b9546f53c1729.tar
Essentials-faabcb1bb9cc7c5c76bf8d09200b9546f53c1729.tar.gz
Essentials-faabcb1bb9cc7c5c76bf8d09200b9546f53c1729.tar.lz
Essentials-faabcb1bb9cc7c5c76bf8d09200b9546f53c1729.tar.xz
Essentials-faabcb1bb9cc7c5c76bf8d09200b9546f53c1729.zip
Added extra params to setHome TL key {0} world {1} x {2} y {3} z
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandsethome.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandsethome.java b/Essentials/src/com/earth2me/essentials/commands/Commandsethome.java
index ec19ca678..d59ac4a31 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandsethome.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandsethome.java
@@ -77,7 +77,7 @@ public class Commandsethome extends EssentialsCommand
{
user.setHome();
}
- user.sendMessage(_("homeSet"));
+ user.sendMessage(_("homeSet", user.getLocation().getWorld().getName(), user.getLocation().getBlockX(), user.getLocation().getBlockY(), user.getLocation().getBlockZ()));
}
}