3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-15 04:20:04 +01:00

#704: Added explicit API to stop a Jukebox from playing

Dieser Commit ist enthalten in:
Matthew Miller 2020-07-10 09:02:21 +10:00 committet von md_5
Ursprung dba91d2ab6
Commit 93cfb195ca
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: E8E901AC7C617C11

Datei anzeigen

@ -77,6 +77,11 @@ public class CraftJukebox extends CraftBlockEntityState<TileEntityJukeBox> imple
return getHandle().get(BlockJukeBox.HAS_RECORD);
}
@Override
public void stopPlaying() {
getWorld().playEffect(getLocation(), Effect.RECORD_PLAY, Material.AIR);
}
@Override
public boolean eject() {
requirePlaced();