From 81b7b0fd5d7acfb1fc24b22cfed3bc0302be9419 Mon Sep 17 00:00:00 2001 From: WuBoytH Date: Sat, 23 Mar 2024 17:31:33 -0400 Subject: [PATCH] adjustments --- fighters/diddy/src/lib.rs | 2 +- fighters/miifighter/src/status.rs | 1 - fighters/pit/src/status/special_s.rs | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/fighters/diddy/src/lib.rs b/fighters/diddy/src/lib.rs index c041345d24..04ceecb264 100644 --- a/fighters/diddy/src/lib.rs +++ b/fighters/diddy/src/lib.rs @@ -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); diff --git a/fighters/miifighter/src/status.rs b/fighters/miifighter/src/status.rs index 469f973f13..e491edc9bd 100644 --- a/fighters/miifighter/src/status.rs +++ b/fighters/miifighter/src/status.rs @@ -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); } \ No newline at end of file diff --git a/fighters/pit/src/status/special_s.rs b/fighters/pit/src/status/special_s.rs index 07b0acdfba..01202f41f2 100644 --- a/fighters/pit/src/status/special_s.rs +++ b/fighters/pit/src/status/special_s.rs @@ -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); }