summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Ward <chris@chrisgward.com>2013-02-20 12:46:47 +1100
committerChris Ward <chris@chrisgward.com>2013-02-20 12:46:47 +1100
commitc9efe14ad354e97df65b7b04b83528baef1be6b4 (patch)
tree4f1eb14d1126a69d53cb48c2a2107bec52bce441
parent64ee6b7914759c60f2162bd727ce596d04093ce0 (diff)
downloadEssentials-c9efe14ad354e97df65b7b04b83528baef1be6b4.tar
Essentials-c9efe14ad354e97df65b7b04b83528baef1be6b4.tar.gz
Essentials-c9efe14ad354e97df65b7b04b83528baef1be6b4.tar.lz
Essentials-c9efe14ad354e97df65b7b04b83528baef1be6b4.tar.xz
Essentials-c9efe14ad354e97df65b7b04b83528baef1be6b4.zip
Final!
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandessentials.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandessentials.java b/Essentials/src/com/earth2me/essentials/commands/Commandessentials.java
index 40ba93a0d..00153c61e 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandessentials.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandessentials.java
@@ -190,7 +190,7 @@ public class Commandessentials extends EssentialsCommand
{
" (__)", " (oo)", " /------\\/", " / | | |", " * /\\---/\\", " ~~ ~~", "....\"Have you mooed today?\"..."
});
- Player player = (Player)sender;
+ final Player player = (Player)sender;
player.playSound(player.getLocation(), Sound.COW_IDLE, 1, 1.0f);
}
}