mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-27 23:10:16 +01:00
SPIGOT-4968: Jukebox.setPlaying(null) causes error
This commit is contained in:
parent
0e4ca96e47
commit
6984fc4f83
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ public class CraftEffect {
|
||||||
datavalue = ((Potion) data).toDamageValue() & 0x3F;
|
datavalue = ((Potion) data).toDamageValue() & 0x3F;
|
||||||
break;
|
break;
|
||||||
case RECORD_PLAY:
|
case RECORD_PLAY:
|
||||||
Validate.isTrue(((Material) data).isRecord(), "Invalid record type!");
|
Validate.isTrue(data == Material.AIR || ((Material) data).isRecord(), "Invalid record type!");
|
||||||
datavalue = Item.getId(CraftMagicNumbers.getItem((Material) data));
|
datavalue = Item.getId(CraftMagicNumbers.getItem((Material) data));
|
||||||
break;
|
break;
|
||||||
case SMOKE:
|
case SMOKE:
|
||||||
|
|
Loading…
Reference in a new issue