summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/commands/Commandtpall.java
diff options
context:
space:
mode:
Diffstat (limited to 'Essentials/src/com/earth2me/essentials/commands/Commandtpall.java')
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandtpall.java22
1 files changed, 11 insertions, 11 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandtpall.java b/Essentials/src/com/earth2me/essentials/commands/Commandtpall.java
index 1cb6321ea..d3b8917aa 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandtpall.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandtpall.java
@@ -1,8 +1,8 @@
package com.earth2me.essentials.commands;
-import org.bukkit.Server;
+import static com.earth2me.essentials.I18n._;
import com.earth2me.essentials.User;
-import com.earth2me.essentials.Util;
+import org.bukkit.Server;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
@@ -15,7 +15,7 @@ public class Commandtpall extends EssentialsCommand
}
@Override
- public void run(Server server, CommandSender sender, String commandLabel, String[] args) throws Exception
+ public void run(final Server server, final CommandSender sender, final String commandLabel, final String[] args) throws Exception
{
if (args.length < 1)
{
@@ -27,23 +27,23 @@ public class Commandtpall extends EssentialsCommand
throw new NotEnoughArgumentsException();
}
- User p = getPlayer(server, args, 0);
- teleportAllPlayers(server, sender, p);
+ final User player = getPlayer(server, args, 0);
+ teleportAllPlayers(server, sender, player);
}
- private void teleportAllPlayers(Server server, CommandSender sender, User p)
+ private void teleportAllPlayers(Server server, CommandSender sender, User user)
{
- sender.sendMessage(Util.i18n("teleportAll"));
- for (Player player : server.getOnlinePlayers())
+ sender.sendMessage(_("teleportAll"));
+ for (Player onlinePlayer : server.getOnlinePlayers())
{
- User u = ess.getUser(player);
- if (p == u)
+ final User player = ess.getUser(onlinePlayer);
+ if (user == player)
{
continue;
}
try
{
- u.getTeleport().now(p, false);
+ player.getTeleport().now(user, false);
}
catch (Exception ex)
{