Skip to content

Commit 999a20a

Browse files
committed
Update edge_special_n.rs
1 parent 8ba0975 commit 999a20a

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

fighters/kirby/src/status/edge_special_n.rs

-5
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,10 @@ unsafe extern "C" fn special_n_main_loop(fighter: &mut L2CFighterCommon) -> L2CV
2323
special_hi_set_kinetics(fighter, false);
2424
}
2525
if ControlModule::check_button_off(fighter.module_accessor, *CONTROL_PAD_BUTTON_SPECIAL) {
26-
println!("off");
2726
WorkModule::on_flag(fighter.module_accessor, *FIGHTER_EDGE_STATUS_SPECIAL_N_FLAG_REQUEST_SHOOT);
2827
}
2928
if WorkModule::is_flag(fighter.module_accessor, *FIGHTER_EDGE_STATUS_SPECIAL_N_FLAG_REQUEST_SHOOT) {
30-
println!("shoot request");
31-
println!("work: {}", WorkModule::get_int(fighter.module_accessor, *FIGHTER_EDGE_STATUS_SPECIAL_N_WORK_INT_CHARGE_KIND));
32-
println!("work?: {}", WorkModule::get_int(fighter.module_accessor, *FIGHTER_EDGE_STATUS_SPECIAL_N_WORK_INT_CHARGE_KIND) != *FIGHTER_EDGE_SPECIAL_N_NONE);
3329
if WorkModule::get_int(fighter.module_accessor, *FIGHTER_EDGE_STATUS_SPECIAL_N_WORK_INT_CHARGE_KIND) != *FIGHTER_EDGE_SPECIAL_N_NONE {
34-
println!("shoot");
3530
fighter.change_status(FIGHTER_KIRBY_STATUS_KIND_EDGE_SPECIAL_N_SHOOT.into(), false.into());
3631
return 0.into()
3732
}

0 commit comments

Comments
 (0)