shithub: pokecrystal

Download patch

ref: 8f4dcbcb590b1c6fb883bb767276c05d78be0d4c
parent: 7d3ea88611efbc2f9b903063e2816b1cae1bad35
author: Fredrik Ljungdahl <[email protected]>
date: Thu Feb 4 07:42:56 EST 2021

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
@@ -564,7 +564,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]