Fixed IsPlayerInFrontOfPC

This commit is contained in:
LOuroboros 2022-09-25 05:51:08 -03:00
parent b8aa34af81
commit a9ab3286ef

View file

@ -961,9 +961,9 @@ static bool8 IsPlayerInFrontOfPC(void)
GetXYCoordsOneStepInFrontOfPlayer(&x, &y); GetXYCoordsOneStepInFrontOfPlayer(&x, &y);
tileInFront = MapGridGetMetatileIdAt(x, y); tileInFront = MapGridGetMetatileIdAt(x, y);
return (tileInFront == METATILE_BrendansMaysHouse_BrendanPC_Off return ((tileInFront == METATILE_BrendansMaysHouse_BrendanPC_On || tileInFront == METATILE_BrendansMaysHouse_BrendanPC_Off)
|| tileInFront == METATILE_BrendansMaysHouse_MayPC_Off || (tileInFront == METATILE_BrendansMaysHouse_MayPC_On || tileInFront == METATILE_BrendansMaysHouse_MayPC_Off)
|| tileInFront == METATILE_Building_PC_Off); || (tileInFront == METATILE_Building_PC_On || tileInFront == METATILE_Building_PC_Off));
} }
void DoPCTurnOnEffect(void) void DoPCTurnOnEffect(void)