SPIGOT-4968: Jukebox.setPlaying(null) causes error

This commit is contained in:
md_5 2019-05-21 12:09:42 +10:00
parent 0e4ca96e47
commit 6984fc4f83

View File

@ -20,7 +20,7 @@ public class CraftEffect {
datavalue = ((Potion) data).toDamageValue() & 0x3F;
break;
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));
break;
case SMOKE: