mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-21 22:48:57 +01:00
CraftMetaFirework: AssertionError -> IllegalArgumentException
This commit is contained in:
parent
685ed2eb92
commit
108fc362c0
1 changed files with 2 additions and 2 deletions
|
@ -154,7 +154,7 @@ class CraftMetaFirework extends CraftMetaItem implements FireworkMeta {
|
|||
case BURST:
|
||||
return 4;
|
||||
default:
|
||||
throw new AssertionError(type);
|
||||
throw new IllegalArgumentException("Unknown effect type " + type);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -171,7 +171,7 @@ class CraftMetaFirework extends CraftMetaItem implements FireworkMeta {
|
|||
case 4:
|
||||
return Type.BURST;
|
||||
default:
|
||||
throw new AssertionError(nbt);
|
||||
throw new IllegalArgumentException("Unknown effect type " + nbt);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue