Meaningful scene constant names

(Two common patterns: 0=default event and 1=nothing; and 0=nothing and 1=some event)
This commit is contained in:
Rangi
2018-02-01 12:40:58 -05:00
parent 936a170e0d
commit fcfe77bc3d
85 changed files with 596 additions and 678 deletions

View File

@@ -17,11 +17,11 @@ Route43_MapScripts:
.CheckIfRockets:
checkevent EVENT_CLEARED_ROCKET_HIDEOUT
iftrue .NoRockets
setmapscene ROUTE_43_GATE, SCENE_ROUTE43GATE_0
setmapscene ROUTE_43_GATE, SCENE_DEFAULT
return
.NoRockets:
setmapscene ROUTE_43_GATE, SCENE_ROUTE43GATE_1
setmapscene ROUTE_43_GATE, SCENE_ROUTE43GATE_NOTHING
return
TrainerCamperSpencer: