summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Ward <chris@chrisgward.com>2012-03-03 19:21:27 +1100
committerKHobbits <rob@khobbits.co.uk>2012-03-05 08:35:48 +0000
commit873c9880dd361e1edae6e0ecca745e1592cafc67 (patch)
tree75548b256bb4aad396dd624add9bea80d86c2df0
parente6736e48a5da9a3dd8480fef3640eae85f4b13ce (diff)
downloadEssentials-873c9880dd361e1edae6e0ecca745e1592cafc67.tar
Essentials-873c9880dd361e1edae6e0ecca745e1592cafc67.tar.gz
Essentials-873c9880dd361e1edae6e0ecca745e1592cafc67.tar.lz
Essentials-873c9880dd361e1edae6e0ecca745e1592cafc67.tar.xz
Essentials-873c9880dd361e1edae6e0ecca745e1592cafc67.zip
Cleanup
Signed-off-by: Chris Ward <chris@chrisgward.com>
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandessentials.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandessentials.java b/Essentials/src/com/earth2me/essentials/commands/Commandessentials.java
index 0f390f4e0..56432a91f 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandessentials.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandessentials.java
@@ -9,6 +9,7 @@ import org.bukkit.Material;
import org.bukkit.Server;
import org.bukkit.block.Block;
import org.bukkit.command.CommandSender;
+import org.bukkit.command.ConsoleCommandSender;
import org.bukkit.entity.Player;
@@ -166,6 +167,9 @@ public class Commandessentials extends EssentialsCommand
private void run_moo(final Server server, final CommandSender sender, final String command, final String args[])
{
- sender.sendMessage(new String[]{" (__)", " (oo)", " /------\\/", " / | ||", " * /\\---/\\", " ~~ ~~", "....\"Have you mooed today?\"..." } );
+ if(sender instanceof ConsoleCommandSender)
+ sender.sendMessage(new String[]{" (__)", " (oo)", " /------\\/", " / | ||", " * /\\---/\\", " ~~ ~~", "....\"Have you mooed today?\"..." } );
+ else
+ sender.sendMessage(new String[]{" (__)", " (oo)", " /------\\/", " / | | |", " * /\\---/\\", " ~~ ~~", "....\"Have you mooed today?\"..." } );
}
}