summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/commands/Commandtpaall.java
diff options
context:
space:
mode:
Diffstat (limited to 'Essentials/src/net/ess3/commands/Commandtpaall.java')
-rw-r--r--Essentials/src/net/ess3/commands/Commandtpaall.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/Essentials/src/net/ess3/commands/Commandtpaall.java b/Essentials/src/net/ess3/commands/Commandtpaall.java
index f8b286b7e..d70f68f03 100644
--- a/Essentials/src/net/ess3/commands/Commandtpaall.java
+++ b/Essentials/src/net/ess3/commands/Commandtpaall.java
@@ -29,7 +29,7 @@ public class Commandtpaall extends EssentialsCommand
private void teleportAAllPlayers(final CommandSender sender, final IUser user)
{
- sender.sendMessage(_("Teleporting request sent to all players..."));
+ sender.sendMessage(_("§6Teleporting request sent to all players..."));
for (Player onlinePlayer : server.getOnlinePlayers())
{
@@ -52,13 +52,13 @@ public class Commandtpaall extends EssentialsCommand
try
{
player.requestTeleport(user, true);
- player.sendMessage(_("{0} has requested that you teleport to them.", user.getPlayer().getDisplayName()));
- player.sendMessage(_("To teleport, type /tpaccept."));
+ player.sendMessage(_("§c{0}§6 has requested that you teleport to them.", user.getPlayer().getDisplayName()));
+ player.sendMessage(_("§6To teleport, type §c/tpaccept§6."));
int tpaAcceptCancellation = 0;
tpaAcceptCancellation = settings.getData().getCommands().getTeleport().getRequestTimeout();
if (tpaAcceptCancellation != 0)
{
- player.sendMessage(_("This request will timeout after {0} seconds.", tpaAcceptCancellation));
+ player.sendMessage(_("§6This request will timeout after§c {0} seconds§6.", tpaAcceptCancellation));
}
}
catch (Exception ex)