summaryrefslogtreecommitdiffstats
path: root/EssentialsSpawn/src
diff options
context:
space:
mode:
authorNecrodoom <doomed.war@gmail.com>2013-03-19 22:24:50 +0200
committerKHobbits <rob@khobbits.co.uk>2013-03-19 20:59:02 +0000
commita5ec8b9cbb9e3d789fd47c88d3ae85c181437cd6 (patch)
tree8436500f496fe48c35132db2f65eb865be1587d5 /EssentialsSpawn/src
parent5af1f50b6578c463e6b44226943b233ba17c8cc5 (diff)
downloadEssentials-a5ec8b9cbb9e3d789fd47c88d3ae85c181437cd6.tar
Essentials-a5ec8b9cbb9e3d789fd47c88d3ae85c181437cd6.tar.gz
Essentials-a5ec8b9cbb9e3d789fd47c88d3ae85c181437cd6.tar.lz
Essentials-a5ec8b9cbb9e3d789fd47c88d3ae85c181437cd6.tar.xz
Essentials-a5ec8b9cbb9e3d789fd47c88d3ae85c181437cd6.zip
[Fix] Print correct sender name on /spawn player from console.
Diffstat (limited to 'EssentialsSpawn/src')
-rw-r--r--EssentialsSpawn/src/com/earth2me/essentials/spawn/Commandspawn.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/EssentialsSpawn/src/com/earth2me/essentials/spawn/Commandspawn.java b/EssentialsSpawn/src/com/earth2me/essentials/spawn/Commandspawn.java
index 31882cc4a..be34d39bd 100644
--- a/EssentialsSpawn/src/com/earth2me/essentials/spawn/Commandspawn.java
+++ b/EssentialsSpawn/src/com/earth2me/essentials/spawn/Commandspawn.java
@@ -1,6 +1,7 @@
package com.earth2me.essentials.spawn;
import static com.earth2me.essentials.I18n._;
+import com.earth2me.essentials.Console;
import com.earth2me.essentials.Trade;
import com.earth2me.essentials.User;
import com.earth2me.essentials.commands.EssentialsCommand;
@@ -50,7 +51,7 @@ public class Commandspawn extends EssentialsCommand
}
final User user = getPlayer(server, args, 0);
respawn(user, null);
- user.sendMessage(_("teleportAtoB", user.getDisplayName(), "spawn"));
+ user.sendMessage(_("teleportAtoB", Console.NAME, "spawn"));
sender.sendMessage(_("teleporting"));
}