diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2021-02-23 10:14:36 -0500 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2021-02-23 10:14:36 -0500 |
commit | 1cf3ccd05b193e6090c3a61c0e2f54524e1a4ba7 (patch) | |
tree | c81dde510625d28a47cd15d678ed70809cd5dff5 /res/scripts | |
parent | 3ecf5bbc1c81908bfd3355999a37e8e96e15b8b5 (diff) | |
download | tanetane-1cf3ccd05b193e6090c3a61c0e2f54524e1a4ba7.tar.gz tanetane-1cf3ccd05b193e6090c3a61c0e2f54524e1a4ba7.tar.bz2 tanetane-1cf3ccd05b193e6090c3a61c0e2f54524e1a4ba7.zip |
Added connection between hallucination_cliff and hallucination_hot_spring
Diffstat (limited to 'res/scripts')
-rw-r--r-- | res/scripts/hallucination_cliff.lua | 4 | ||||
-rw-r--r-- | res/scripts/hallucination_hot_spring.lua | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/res/scripts/hallucination_cliff.lua b/res/scripts/hallucination_cliff.lua index f351e1e..412ff03 100644 --- a/res/scripts/hallucination_cliff.lua +++ b/res/scripts/hallucination_cliff.lua | |||
@@ -3,3 +3,7 @@ hallucination_cliff = {} | |||
3 | function hallucination_cliff.off_bottom() | 3 | function hallucination_cliff.off_bottom() |
4 | ChangeMap("hallucination_interior", "fromTop") | 4 | ChangeMap("hallucination_interior", "fromTop") |
5 | end | 5 | end |
6 | |||
7 | function hallucination_cliff.off_left() | ||
8 | ChangeMap("hallucination_hot_spring", "fromRight") | ||
9 | end | ||
diff --git a/res/scripts/hallucination_hot_spring.lua b/res/scripts/hallucination_hot_spring.lua new file mode 100644 index 0000000..0abd63e --- /dev/null +++ b/res/scripts/hallucination_hot_spring.lua | |||
@@ -0,0 +1,5 @@ | |||
1 | hallucination_hot_spring = {} | ||
2 | |||
3 | function hallucination_hot_spring.off_right() | ||
4 | ChangeMap("hallucination_cliff", "fromLeft") | ||
5 | end | ||