Combined conditions per https://github.com/rh-hideout/pokeemerald-expansion/pull/5044\#discussion_r1712963093
This commit is contained in:
parent
cb77949881
commit
b39258ebce
1 changed files with 1 additions and 3 deletions
|
@ -1093,9 +1093,7 @@ static bool32 TrySetUpWalkIntoSignpostScript(struct MapPosition *position, u32 m
|
|||
{
|
||||
const u8 *script;
|
||||
|
||||
if (JOY_HELD(DPAD_LEFT | DPAD_RIGHT))
|
||||
return FALSE;
|
||||
if (playerDirection != DIR_NORTH)
|
||||
if ((JOY_HELD(DPAD_LEFT | DPAD_RIGHT)) || (playerDirection != DIR_NORTH))
|
||||
return FALSE;
|
||||
|
||||
switch (GetFacingSignpostType(metatileBehavior, playerDirection))
|
||||
|
|
Loading…
Reference in a new issue