From 1a7bc6b1f571343ad380aa2f9e5f79cc3413866b Mon Sep 17 00:00:00 2001 From: Rangi42 Date: Sun, 29 Dec 2024 15:33:40 -0500 Subject: [PATCH] Remove "skip" prefix from AI move score labels --- engine/battle/ai/scoring.asm | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/engine/battle/ai/scoring.asm b/engine/battle/ai/scoring.asm index 268043680..394c23afb 100644 --- a/engine/battle/ai/scoring.asm +++ b/engine/battle/ai/scoring.asm @@ -1081,10 +1081,10 @@ AI_Smart_Confuse: ret c call Random cp 10 percent - jr c, .skipdiscourage + jr c, .discourage inc [hl] -.skipdiscourage +.discourage ; Discourage again if player's HP is below 25%. call AICheckPlayerQuarterHP ret c @@ -1235,12 +1235,12 @@ AI_Smart_Rage: ; If enemy's Rage is building, 50% chance to encourage this move. call AI_50_50 - jr c, .skipencourage + jr c, .encourage dec [hl] ; Encourage this move based on Rage's counter. -.skipencourage +.encourage ld a, [wEnemyRageCounter] cp 2 ret c @@ -1287,14 +1287,14 @@ AI_Smart_Mimic: cp EFFECTIVE pop hl jr c, .discourage - jr z, .skip_encourage + jr z, .encourage call AI_50_50 - jr c, .skip_encourage + jr c, .encourage dec [hl] -.skip_encourage +.encourage ld a, [wLastPlayerCounterMove] push hl ld hl, UsefulMoves