We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8f6870b + 99ff6b5 commit a204e93Copy full SHA for a204e93
fighters/kirby/src/status/mod.rs
@@ -190,18 +190,18 @@ unsafe extern "C" fn should_use_special_n_callback(fighter: &mut L2CFighterCommo
190
}
191
if copy_kind == *FIGHTER_KIND_GANON {
192
if fighter.is_situation(*SITUATION_KIND_AIR) && VarModule::is_flag(fighter.battle_object, vars::ganon::instance::DISABLE_SPECIAL_N) {
193
- return 1.into();
+ return 0.into();
194
195
else {
196
- return 0.into();
+ return 1.into();
197
198
199
if copy_kind == *FIGHTER_KIND_TRAIL {
200
if VarModule::is_flag(fighter.battle_object, vars::trail::instance::DISABLE_SPECIAL_N) {
201
202
203
204
205
206
207
if copy_kind != *FIGHTER_KIND_PIT {
0 commit comments