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
commit23d2ffb134fb7f109ff6e2a17bc9268eb457a29f (patch)
tree4393131057d7670d6fedace0bdb6a300b2e88236
parentad2f446602f4726299fe1f47285d3ca5b094ecdf (diff)
downloadEssentials-23d2ffb134fb7f109ff6e2a17bc9268eb457a29f.tar
Essentials-23d2ffb134fb7f109ff6e2a17bc9268eb457a29f.tar.gz
Essentials-23d2ffb134fb7f109ff6e2a17bc9268eb457a29f.tar.lz
Essentials-23d2ffb134fb7f109ff6e2a17bc9268eb457a29f.tar.xz
Essentials-23d2ffb134fb7f109ff6e2a17bc9268eb457a29f.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));
}