More parsing work

This commit is contained in:
2024-02-27 14:52:07 -05:00
parent 0a39102b08
commit ab32ad1538
+2 -2
View File
@@ -214,8 +214,8 @@ public class ItemTemplate {
if (attack_anim_right.isEmpty() == false) if (attack_anim_right.isEmpty() == false)
for (Object o : attack_anim_right) { for (Object o : attack_anim_right) {
JSONArray animationEntry = (JSONArray) o; JSONArray animationEntry = (JSONArray) o;
int animation = (int) animationEntry.get(0); int animation = ((Long) animationEntry.get(0)).intValue();
int duration = (int) animationEntry.get(1); int duration = ((Long) animationEntry.get(1)).intValue();
weapon_attack_anim_right.add(new int[]{animation, duration}); weapon_attack_anim_right.add(new int[]{animation, duration});
} }