Skip to content

Commit

Permalink
adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
WuBoytH committed Mar 23, 2024
1 parent 88ff353 commit 81b7b0f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fighters/diddy/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ use utils::{
use smashline::*;

pub fn install() {
let agent = &mut Agent::new("diddy kong");
let agent = &mut Agent::new("diddy");
acmd::install(agent);
status::install(agent);
opff::install(agent);
Expand Down
1 change: 0 additions & 1 deletion fighters/miifighter/src/status.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,4 @@ unsafe extern "C" fn special_lw1_ground_main(fighter: &mut L2CFighterCommon) ->

pub fn install(agent: &mut Agent) {
agent.status(Main, *FIGHTER_MIIFIGHTER_STATUS_KIND_SPECIAL_LW1_GROUND, special_lw1_ground_main);
agent.on_start(on_start);
}
2 changes: 1 addition & 1 deletion fighters/pit/src/status/special_s.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ pub unsafe extern "C" fn special_s_end_main(fighter: &mut L2CFighterCommon) -> L
}

pub fn install(agent: &mut Agent) {
agent.status(Main,*FIGHTER_PIT_STATUS_KIND_SPECIAL_S_END,special_s_end_main,)
agent.status(Main, *FIGHTER_PIT_STATUS_KIND_SPECIAL_S_END, special_s_end_main);
}

0 comments on commit 81b7b0f

Please sign in to comment.