Skip to content

Commit bf26482

Browse files
committed
Adjustments
1 parent 34dfaae commit bf26482

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

fighters/common/src/misc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ unsafe fn shield_pushback_analog(ctx: &skyline::hooks::InlineCtx) {
8080

8181
pub fn install() {
8282
smashline::Agent::new("fighter")
83-
.on_start(fighter_reset)
83+
.on_init(fighter_reset)
8484
.install();
8585
// skyline::patching::Patch::in_text(0x6417f4).nop();
8686
// skyline::patching::Patch::in_text(0x6285d0).nop();

fighters/gamewatch/src/acmd/specials.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ pub fn install() {
429429
.acmd("game_specials5", gamewatch_special_s5_game)
430430
.acmd("game_specialairs5", gamewatch_special_s5_game)
431431
.acmd("game_specials6", gamewatch_special_s6_game)
432-
.acmd("specialairs6", gamewatch_special_s6_game)
432+
.acmd("game_specialairs6", gamewatch_special_s6_game)
433433
.acmd("game_specials7", gamewatch_special_s7_game)
434434
.acmd("game_specialairs7", gamewatch_special_s7_game)
435435
.acmd("game_specials8", gamewatch_special_s8_game)

fighters/shizue/src/acmd/smashes.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,6 @@ pub fn install() {
175175
.acmd("game_attackhi4", shizue_attack_hi4_game)
176176
.install();
177177
smashline::Agent::new("shizue_trafficsign")
178-
.acmd("attack", shizue_trafficsign_attack_game)
178+
.acmd("game_attack", shizue_trafficsign_attack_game)
179179
.install();
180180
}

fighters/snake/src/acmd/smashes.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ pub fn install() {
432432
.acmd("game_attacklw4", snake_down_smash_game)
433433
.acmd("sound_attacklw4", snake_down_smash_snd)
434434
.acmd("effect_attacklw4", snake_down_smash_eff)
435-
.acmd("expession_attacklw4charge", snake_down_smash_charge_exp)
435+
.acmd("expression_attacklw4charge", snake_down_smash_charge_exp)
436436
.acmd("effect_attacklw4charge", snake_down_smash_charge_eff)
437437
.install();
438438
}

0 commit comments

Comments
 (0)