We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c867b69 commit ec98e65Copy full SHA for ec98e65
fighters/peach/src/status/special_hi.rs
@@ -3,6 +3,9 @@ use globals::*;
3
4
#[status_script(agent = "peach", status = FIGHTER_PEACH_STATUS_KIND_SPECIAL_HI_AIR_END, condition = LUA_SCRIPT_STATUS_FUNC_STATUS_MAIN)]
5
unsafe fn special_hi_air_end_main(fighter: &mut L2CFighterCommon) -> L2CValue {
6
+ if !StopModule::is_stop(fighter.module_accessor) {
7
+ special_hi_substatus(fighter, false.into());
8
+ }
9
fighter.global_table[SUB_STATUS].assign(&L2CValue::Ptr(special_hi_substatus as *const () as _));
10
original!(fighter)
11
}
@@ -19,4 +22,4 @@ pub fn install() {
19
22
smashline::install_status_scripts!(
20
23
special_hi_air_end_main
21
24
);
-}
25
+}
0 commit comments