summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKHobbits <rob@khobbits.co.uk>2013-12-21 23:30:12 +0000
committerKHobbits <rob@khobbits.co.uk>2013-12-21 23:30:12 +0000
commita6aa8c1c86eb41f2b4234f8f133e488ec42b25dd (patch)
treeeec37af6faadcb39338836908efcca4f6ba0f876
parent203c58f41cb2580b722c48b3db281cc0f6e6c2d6 (diff)
downloadEssentials-a6aa8c1c86eb41f2b4234f8f133e488ec42b25dd.tar
Essentials-a6aa8c1c86eb41f2b4234f8f133e488ec42b25dd.tar.gz
Essentials-a6aa8c1c86eb41f2b4234f8f133e488ec42b25dd.tar.lz
Essentials-a6aa8c1c86eb41f2b4234f8f133e488ec42b25dd.tar.xz
Essentials-a6aa8c1c86eb41f2b4234f8f133e488ec42b25dd.zip
Add {4} to homeSet TL key, this contains the name of the home being set.
-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 0f0fee9ee..434816254 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandsethome.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandsethome.java
@@ -57,7 +57,7 @@ public class Commandsethome extends EssentialsCommand
throw new NoSuchFieldException(_("invalidHomeName"));
}
usersHome.setHome(name, location);
- user.sendMessage(_("homeSet", user.getLocation().getWorld().getName(), user.getLocation().getBlockX(), user.getLocation().getBlockY(), user.getLocation().getBlockZ()));
+ user.sendMessage(_("homeSet", user.getLocation().getWorld().getName(), user.getLocation().getBlockX(), user.getLocation().getBlockY(), user.getLocation().getBlockZ(), name));
}