shithub: pokecrystal

Download patch

ref: 4be482e587ab113df0b8eb52ab0feb37738f6261
parent: 4264d53eb681ea8a3b1a71426ac485078b80a8ca
parent: 8f4dcbcb590b1c6fb883bb767276c05d78be0d4c
author: Rangi <35663410+Rangi42@users.noreply.github.com>
date: Fri Feb 5 04:45:11 EST 2021

Merge pull request #799 from FredrIQ/typo_fix

Battle Tower: fix typo in constant (PROGESS -> PROGRESS)

--- a/constants/battle_tower_constants.asm
+++ b/constants/battle_tower_constants.asm
@@ -56,6 +56,6 @@
 	const_def
 	const BATTLETOWER_NO_CHALLENGE
 	const BATTLETOWER_SAVED_AND_LEFT
-	const BATTLETOWER_CHALLENGE_IN_PROGESS
+	const BATTLETOWER_CHALLENGE_IN_PROGRESS
 	const BATTLETOWER_WON_CHALLENGE
 	const BATTLETOWER_RECEIVED_REWARD
--- a/engine/events/battle_tower/battle_tower.asm
+++ b/engine/events/battle_tower/battle_tower.asm
@@ -565,7 +565,7 @@
 
 	ld a, BANK(sBattleTowerChallengeState)
 	call OpenSRAM
-	ld a, BATTLETOWER_CHALLENGE_IN_PROGESS
+	ld a, BATTLETOWER_CHALLENGE_IN_PROGRESS
 	ld [sBattleTowerChallengeState], a
 	ld hl, sNrOfBeatenBattleTowerTrainers
 	inc [hl]