summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorolivervscreeper <dev@olivervscreeper.co.uk>2015-05-28 11:06:39 +0100
committermd_5 <git@md-5.net>2015-05-28 20:14:14 +1000
commit7a6eedb7b3f3f90f2c7797c6107e7f72119872a1 (patch)
treecd1a4d4b56f0e5ac706f7193c4b52f89f280ea5d
parent338c5a112b0cb5af1eabe1b76586501805b17d14 (diff)
downloadbukkit-7a6eedb7b3f3f90f2c7797c6107e7f72119872a1.tar
bukkit-7a6eedb7b3f3f90f2c7797c6107e7f72119872a1.tar.gz
bukkit-7a6eedb7b3f3f90f2c7797c6107e7f72119872a1.tar.lz
bukkit-7a6eedb7b3f3f90f2c7797c6107e7f72119872a1.tar.xz
bukkit-7a6eedb7b3f3f90f2c7797c6107e7f72119872a1.zip
[SPIGOT-251] Removed deprecation of playSound() method, as new resource pack features mean sound names as strings are intended.
For more information see the linked issue or the playsound command. http://minecraft.gamepedia.com/Sounds.json
-rw-r--r--src/main/java/org/bukkit/entity/Player.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/main/java/org/bukkit/entity/Player.java b/src/main/java/org/bukkit/entity/Player.java
index 229a71a0..1d0daaf5 100644
--- a/src/main/java/org/bukkit/entity/Player.java
+++ b/src/main/java/org/bukkit/entity/Player.java
@@ -236,9 +236,7 @@ public interface Player extends HumanEntity, Conversable, CommandSender, Offline
* @param sound the internal sound name to play
* @param volume the volume of the sound
* @param pitch the pitch of the sound
- * @deprecated Magic value
*/
- @Deprecated
public void playSound(Location location, String sound, float volume, float pitch);
/**