diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2019-10-23 09:05:26 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-23 09:05:26 -0400 |
commit | 6e36c229200e083ca005cbc448e99210d111f3b2 (patch) | |
tree | aec86bd0f081a7ff207f68cba33315991b629be1 /src/heal_location.c | |
parent | 4bc284ff2c7d0ec3f24df8d94a77860fbaed588b (diff) | |
parent | 3efd2e1210b4149628197446d063df0fc11281ab (diff) |
Merge pull request #130 from PikalaxALT/trainers
Trainers, event flags, mystery_event_msg, map object gfx
Diffstat (limited to 'src/heal_location.c')
-rw-r--r-- | src/heal_location.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/heal_location.c b/src/heal_location.c index 5c6dbc882..89d9478c0 100644 --- a/src/heal_location.c +++ b/src/heal_location.c @@ -122,10 +122,10 @@ void SetBlackoutRespawnWarpAndHealerNpc(struct WarpData * warp) { u32 healLocationIdx; - if (VarGet(VAR_0x4082) == 1) + if (VarGet(VAR_MAP_SCENE_TRAINER_TOWER) == 1) { if (!gSaveBlock1Ptr->unkArray[gSaveBlock1Ptr->unkArrayIdx].unkA_2) - VarSet(VAR_0x4082, 0); + VarSet(VAR_MAP_SCENE_TRAINER_TOWER, 0); gSpecialVar_LastTalked = 1; warp->x = 4; warp->y = 11; @@ -159,7 +159,7 @@ void SetBlackoutRespawnWarpAndHealerNpc(struct WarpData * warp) { warp->x = 4; warp->y = 11; - VarSet(VAR_0x4082, 0); + VarSet(VAR_MAP_SCENE_TRAINER_TOWER, 0); } else { |