diff options
author | Chris Ward <chris@chrisgward.com> | 2013-02-20 12:46:47 +1100 |
---|---|---|
committer | Chris Ward <chris@chrisgward.com> | 2013-02-20 12:46:47 +1100 |
commit | c9efe14ad354e97df65b7b04b83528baef1be6b4 (patch) | |
tree | 4f1eb14d1126a69d53cb48c2a2107bec52bce441 | |
parent | 64ee6b7914759c60f2162bd727ce596d04093ce0 (diff) | |
download | Essentials-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.java | 2 |
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); } } |