修复单发装填类武器一阶段换弹动画缺失bug

This commit is contained in:
Atsuishio 2025-04-14 03:16:54 +08:00 committed by Light_Quanta
parent 75e6476056
commit b95d06aab0
No known key found for this signature in database
GPG key ID: 11A39A1B8C890959

View file

@ -58,7 +58,7 @@ public class M870Item extends GunItem implements GeoItem {
return event.setAndContinue(RawAnimation.begin().thenPlay("animation.m870.shift")); return event.setAndContinue(RawAnimation.begin().thenPlay("animation.m870.shift"));
} }
if (data.reload.stage() == 1 && data.reload.iterativeLoadTimer.get() > 0) { if (data.reload.stage() == 1 && data.reload.prepareLoadTimer.get() > 0) {
return event.setAndContinue(RawAnimation.begin().thenPlay("animation.m870.preparealt")); return event.setAndContinue(RawAnimation.begin().thenPlay("animation.m870.preparealt"));
} }