summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Ward <chris@chrisgward.com>2012-03-03 19:21:27 +1100
committerChris Ward <chris@chrisgward.com>2012-03-03 19:21:27 +1100
commit74a57553f68114948614eb6e77abe201ee0bcd36 (patch)
treee2d5886c2baa278d1c5ca0aaf473347f8deef8c5
parent6da6e4d2e889b7bbeb15e4adf68a9fdc8b0b330f (diff)
downloadEssentials-74a57553f68114948614eb6e77abe201ee0bcd36.tar
Essentials-74a57553f68114948614eb6e77abe201ee0bcd36.tar.gz
Essentials-74a57553f68114948614eb6e77abe201ee0bcd36.tar.lz
Essentials-74a57553f68114948614eb6e77abe201ee0bcd36.tar.xz
Essentials-74a57553f68114948614eb6e77abe201ee0bcd36.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?\"..." } );
}
}