mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2025-01-27 13:53:52 +01:00
Apply suggestions from code review
This commit is contained in:
parent
a9ab3286ef
commit
3b983aae14
@ -961,9 +961,12 @@ static bool8 IsPlayerInFrontOfPC(void)
|
|||||||
GetXYCoordsOneStepInFrontOfPlayer(&x, &y);
|
GetXYCoordsOneStepInFrontOfPlayer(&x, &y);
|
||||||
tileInFront = MapGridGetMetatileIdAt(x, y);
|
tileInFront = MapGridGetMetatileIdAt(x, y);
|
||||||
|
|
||||||
return ((tileInFront == METATILE_BrendansMaysHouse_BrendanPC_On || tileInFront == METATILE_BrendansMaysHouse_BrendanPC_Off)
|
return (tileInFront == METATILE_BrendansMaysHouse_BrendanPC_On
|
||||||
|| (tileInFront == METATILE_BrendansMaysHouse_MayPC_On || tileInFront == METATILE_BrendansMaysHouse_MayPC_Off)
|
|| tileInFront == METATILE_BrendansMaysHouse_BrendanPC_Off
|
||||||
|| (tileInFront == METATILE_Building_PC_On || tileInFront == METATILE_Building_PC_Off));
|
|| tileInFront == METATILE_BrendansMaysHouse_MayPC_On
|
||||||
|
|| tileInFront == METATILE_BrendansMaysHouse_MayPC_Off
|
||||||
|
|| tileInFront == METATILE_Building_PC_On
|
||||||
|
|| tileInFront == METATILE_Building_PC_Off);
|
||||||
}
|
}
|
||||||
|
|
||||||
void DoPCTurnOnEffect(void)
|
void DoPCTurnOnEffect(void)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user