From cca150746bf377f22fd1da336eeb2435828fc901 Mon Sep 17 00:00:00 2001 From: Bukkit/Spigot Date: Thu, 28 May 2015 11:06:39 +0100 Subject: [PATCH] [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 By: olivervscreeper --- paper-api/src/main/java/org/bukkit/entity/Player.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/paper-api/src/main/java/org/bukkit/entity/Player.java b/paper-api/src/main/java/org/bukkit/entity/Player.java index 229a71a056..1d0daaf53d 100644 --- a/paper-api/src/main/java/org/bukkit/entity/Player.java +++ b/paper-api/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); /**