diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2022-02-23 08:04:16 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-23 08:04:16 -0500 |
commit | f7ba502c5267f136b685d2582a00615deaa29b53 (patch) | |
tree | 712c9ace5ed9c462d1d9e1b85b3e68dbde425344 /data/scripts | |
parent | 3765c1e7f155ce42b5808117e97bf287e7006d6d (diff) | |
parent | f826a5a82d3563cf30f7acd5270f200119cc6745 (diff) |
Merge pull request #1637 from cbt6/pc-location
Use constants for PC locations
Diffstat (limited to 'data/scripts')
-rw-r--r-- | data/scripts/pc.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/scripts/pc.inc b/data/scripts/pc.inc index 43c0bca0d..1993aaf63 100644 --- a/data/scripts/pc.inc +++ b/data/scripts/pc.inc @@ -1,6 +1,6 @@ EventScript_PC:: lockall - setvar VAR_0x8004, 0 + setvar VAR_0x8004, PC_LOCATION_OTHER special DoPCTurnOnEffect playse SE_PC_ON msgbox Text_BootUpPC, MSGBOX_DEFAULT @@ -51,7 +51,7 @@ EventScript_AccessLanettesPC:: return EventScript_TurnOffPC:: - setvar VAR_0x8004, 0 + setvar VAR_0x8004, PC_LOCATION_OTHER playse SE_PC_OFF special DoPCTurnOffEffect releaseall |