Skip to content

Commit

Permalink
Rename the Move Relearner specials. (#684)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeturic authored Jan 19, 2025
1 parent 2a3e92e commit d844877
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions data/maps/TwoIsland_House/scripts.inc
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ TwoIsland_House_EventScript_AskTutorMon::

TwoIsland_House_EventScript_ChooseMonToTutor::
msgbox TwoIsland_House_Text_TutorWhichMon
special SelectMoveTutorMon
special ChooseMonForMoveRelearner
waitstate
goto_if_ge VAR_0x8004, PARTY_SIZE, TwoIsland_House_EventScript_EndTutorMove
special IsSelectedMonEgg
Expand All @@ -59,7 +59,7 @@ TwoIsland_House_EventScript_ChooseMonToTutor::

TwoIsland_House_EventScript_ChooseMoveToTeach::
msgbox TwoIsland_House_Text_TeachWhichMove
special DisplayMoveTutorMenu
special TeachMoveRelearnerMove
waitstate
goto_if_eq VAR_0x8004, 0, TwoIsland_House_EventScript_ChooseMonToTutor
goto_if_set HAS_BOTH_MUSHROOMS, TwoIsland_House_EventScript_ChooseMushroom
Expand Down
4 changes: 2 additions & 2 deletions data/specials.inc
Original file line number Diff line number Diff line change
Expand Up @@ -227,12 +227,12 @@ gSpecials::
def_special GetElevatorFloor
def_special NullFieldSpecial @ Lottery Corner specials
def_special NullFieldSpecial
def_special SelectMoveTutorMon
def_special ChooseMonForMoveRelearner
def_special SelectMoveDeleterMove
def_special MoveDeleterForgetMove
def_special BufferMoveDeleterNicknameAndMove
def_special GetNumMovesSelectedMonHas
def_special DisplayMoveTutorMenu
def_special TeachMoveRelearnerMove
def_special NullFieldSpecial @ Hoenn Cycling Road specials
def_special NullFieldSpecial
def_special GetPlayerAvatarBike
Expand Down
2 changes: 1 addition & 1 deletion src/learn_move.c
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ static void VBlankCB_MoveRelearner(void)
TransferPlttBuffer();
}

void DisplayMoveTutorMenu(void)
void TeachMoveRelearnerMove(void)
{
LockPlayerFieldControls();
CreateTask(Task_InitMoveRelearnerMenu, 10);
Expand Down
2 changes: 1 addition & 1 deletion src/party_menu_specials.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ void ChoosePartyMon(void)
BeginNormalPaletteFade(PALETTES_ALL, 0, 0, 0x10, RGB_BLACK);
}

void SelectMoveTutorMon(void)
void ChooseMonForMoveRelearner(void)
{
u8 taskId;

Expand Down

0 comments on commit d844877

Please sign in to comment.