random animation for weapon powers

This commit is contained in:
2024-04-21 11:52:47 -05:00
parent 8e93e82526
commit a84c712110
+4 -2
View File
@@ -481,12 +481,14 @@ public enum CombatManager {
if (token == 563721004) //kick animation
return 79;
if(mainHand && wb != null){
if(wb != null) {
if (mainHand) {
return wb.weapon_attack_anim_right.get(ThreadLocalRandom.current().nextInt(wb.weapon_attack_anim_right.size()))[0];
} else{
} else {
return wb.weapon_attack_anim_left.get(ThreadLocalRandom.current().nextInt(wb.weapon_attack_anim_left.size()))[0];
}
}
}
if (wb == null)
return 75;