Skip to content

Commit a204e93

Browse files
authored
Merge pull request #183 from HDR-Development/kirby-fix-real
Fix Ganon and Sora copy abilities
2 parents 8f6870b + 99ff6b5 commit a204e93

File tree

1 file changed

+4
-4
lines changed
  • fighters/kirby/src/status

1 file changed

+4
-4
lines changed

fighters/kirby/src/status/mod.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -190,18 +190,18 @@ unsafe extern "C" fn should_use_special_n_callback(fighter: &mut L2CFighterCommo
190190
}
191191
if copy_kind == *FIGHTER_KIND_GANON {
192192
if fighter.is_situation(*SITUATION_KIND_AIR) && VarModule::is_flag(fighter.battle_object, vars::ganon::instance::DISABLE_SPECIAL_N) {
193-
return 1.into();
193+
return 0.into();
194194
}
195195
else {
196-
return 0.into();
196+
return 1.into();
197197
}
198198
}
199199
if copy_kind == *FIGHTER_KIND_TRAIL {
200200
if VarModule::is_flag(fighter.battle_object, vars::trail::instance::DISABLE_SPECIAL_N) {
201-
return 1.into();
201+
return 0.into();
202202
}
203203
else {
204-
return 0.into();
204+
return 1.into();
205205
}
206206
}
207207
if copy_kind != *FIGHTER_KIND_PIT {

0 commit comments

Comments
 (0)