[Bleeding] Fixed class cast in ItemStack deserialization. Fixes BUKKIT-777
This commit is contained in:
parent
332e8cad5d
commit
0e4dc578d0
@ -360,7 +360,7 @@ public class ItemStack implements ConfigurationSerializable {
|
||||
int amount = 1;
|
||||
|
||||
if (args.containsKey("damage")) {
|
||||
damage = (Short) args.get("damage");
|
||||
damage = ((Number) args.get("damage")).shortValue();
|
||||
}
|
||||
|
||||
if (args.containsKey("amount")) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user