From 23d2ffb134fb7f109ff6e2a17bc9268eb457a29f Mon Sep 17 00:00:00 2001 From: KHobbits Date: Sat, 21 Dec 2013 23:30:12 +0000 Subject: [PATCH] Add {4} to homeSet TL key, this contains the name of the home being set. --- .../src/com/earth2me/essentials/commands/Commandsethome.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); }