Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Mii Gunner Shine #2265

Merged
merged 5 commits into from
Mar 19, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update opff.rs
  • Loading branch information
jdipalermo27 authored Feb 15, 2024
commit d5d20644b886621a397a688fdb8959e56b574e11
2 changes: 1 addition & 1 deletion fighters/miigunner/src/opff.rs
Original file line number Diff line number Diff line change
@@ -82,7 +82,7 @@ unsafe fn nspecial_cancels(boma: &mut BattleObjectModuleAccessor) {
}

unsafe fn reflector_jc(boma: &mut BattleObjectModuleAccessor) {
if fighter.is_status(*FIGHTER_MIIGUNNER_STATUS_KIND_SPECIAL_LW3) && WorkModule::get_int(fighter.module_accessor, *FIGHTER_INSTANCE_WORK_ID_INT_FRAME_IN_AIR) <= 1 {
if fighter.is_status(*FIGHTER_MIIGUNNER_STATUS_KIND_SPECIAL_LW3_HOLD) && WorkModule::get_int(fighter.module_accessor, *FIGHTER_INSTANCE_WORK_ID_INT_FRAME_IN_AIR) <= 1 {
GroundModule::correct(fighter.module_accessor, app::GroundCorrectKind(*GROUND_CORRECT_KIND_GROUND));
}
if boma.is_status_one_of(&[
Loading