Skip to content

Commit 971cf64

Browse files
committed
Ground Charge Shot Fix
1 parent a41cc79 commit 971cf64

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

fighters/rockman/src/status/special_n.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,13 @@ unsafe fn rockman_special_n_main(fighter: &mut L2CFighterCommon) -> L2CValue {
6161

6262
unsafe extern "C" fn rockman_special_n_main_loop(fighter: &mut L2CFighterCommon) -> L2CValue {
6363
let sit = fighter.global_table[SITUATION_KIND].get_i32();
64-
if StatusModule::is_changing(fighter.module_accessor) || StatusModule::is_situation_changed(fighter.module_accessor) {
64+
if StatusModule::is_situation_changed(fighter.module_accessor) {
6565
if fighter.global_table[SITUATION_KIND].get_i32() == *SITUATION_KIND_GROUND {
6666
fighter.change_status(FIGHTER_STATUS_KIND_LANDING.into(), false.into());
6767
return 0.into();
6868
}
69+
}
70+
if StatusModule::is_changing(fighter.module_accessor) || StatusModule::is_situation_changed(fighter.module_accessor) {
6971
rockman_special_motion_helper(
7072
fighter,
7173
hash40("buster_charge_shot").into(),

0 commit comments

Comments
 (0)