13
0
geforkt von Mirrors/Paper

SPIGOT-7071: Add Player#stopSound(SoundCategory category)

By: SkytAsul <skytasul@gmail.com>
Dieser Commit ist enthalten in:
CraftBukkit/Spigot 2022-07-01 20:46:16 +10:00
Ursprung 230282ea44
Commit 5377574bc2

Datei anzeigen

@ -554,6 +554,13 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
getHandle().connection.send(new PacketPlayOutStopSound(new MinecraftKey(sound), category == null ? net.minecraft.sounds.SoundCategory.MASTER : net.minecraft.sounds.SoundCategory.valueOf(category.name()))); getHandle().connection.send(new PacketPlayOutStopSound(new MinecraftKey(sound), category == null ? net.minecraft.sounds.SoundCategory.MASTER : net.minecraft.sounds.SoundCategory.valueOf(category.name())));
} }
@Override
public void stopSound(org.bukkit.SoundCategory category) {
if (getHandle().connection == null) return;
getHandle().connection.send(new PacketPlayOutStopSound(null, net.minecraft.sounds.SoundCategory.valueOf(category.name())));
}
@Override @Override
public void stopAllSounds() { public void stopAllSounds() {
if (getHandle().connection == null) return; if (getHandle().connection == null) return;