mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-12-31 23:00:42 +01:00
removing nonessential stuff
This commit is contained in:
parent
0de15db564
commit
6cb152e452
@ -4824,10 +4824,7 @@ static void Task_LearnNextMoveOrClosePartyMenu(u8 taskId)
|
||||
if (IsFanfareTaskInactive() && ((JOY_NEW(A_BUTTON)) || (JOY_NEW(B_BUTTON))))
|
||||
{
|
||||
if (gPartyMenu.learnMoveState == 1)
|
||||
if (sInitialLevel < sFinalLevel)
|
||||
Task_TryLearnNewMoves(taskId);
|
||||
else
|
||||
Task_TryLearningNextMove(taskId);
|
||||
Task_TryLearningNextMove(taskId);
|
||||
else
|
||||
{
|
||||
if (gPartyMenu.learnMoveState == 2) // never occurs
|
||||
@ -5088,7 +5085,7 @@ static void Task_TryLearnNewMoves(u8 taskId)
|
||||
switch (learnMove)
|
||||
{
|
||||
case 0: // No moves to learn
|
||||
if(sInitialLevel >= sFinalLevel)
|
||||
if (sInitialLevel >= sFinalLevel)
|
||||
PartyMenuTryEvolution(taskId);
|
||||
break;
|
||||
case MON_HAS_MAX_MOVES:
|
||||
@ -5114,12 +5111,9 @@ static void Task_TryLearningNextMove(u8 taskId)
|
||||
{
|
||||
SetMonData(&gPlayerParty[gPartyMenu.slotId], MON_DATA_LEVEL, &sInitialLevel);
|
||||
result = MonTryLearningNewMove(&gPlayerParty[gPartyMenu.slotId], FALSE);
|
||||
gPartyMenu.learnMoveState = 1;
|
||||
switch (result)
|
||||
{
|
||||
case 0: // No moves to learn
|
||||
if(sInitialLevel >= sFinalLevel)
|
||||
PartyMenuTryEvolution(taskId);
|
||||
break;
|
||||
case MON_HAS_MAX_MOVES:
|
||||
DisplayMonNeedsToReplaceMove(taskId);
|
||||
@ -5133,7 +5127,7 @@ static void Task_TryLearningNextMove(u8 taskId)
|
||||
if (result)
|
||||
break;
|
||||
}
|
||||
if(sInitialLevel >= sFinalLevel)
|
||||
if (sInitialLevel >= sFinalLevel)
|
||||
PartyMenuTryEvolution(taskId);
|
||||
}
|
||||
|
||||
|
@ -4883,7 +4883,9 @@ bool8 PokemonUseItemEffects(struct Pokemon *mon, u16 item, u8 partyIndex, u8 mov
|
||||
&& GetMonData(mon, MON_DATA_LEVEL, NULL) != MAX_LEVEL)
|
||||
{
|
||||
if (ItemId_GetHoldEffectParam(item) & FULL_LEVEL)
|
||||
{
|
||||
dataUnsigned = gExperienceTables[gBaseStats[GetMonData(mon, MON_DATA_SPECIES, NULL)].growthRate][GetMonData(mon, MON_DATA_LEVEL, NULL) + 1];
|
||||
}
|
||||
else
|
||||
{
|
||||
temp1 = ItemId_GetHoldEffectParam(item) & 0x0F;
|
||||
|
Loading…
Reference in New Issue
Block a user