diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-05-17 04:20:20 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-05-17 04:20:20 -0300 |
commit | 65c634722e6a551388a63193b0c9a28d35ff845f (patch) | |
tree | 3c36ea2a2284e875b2f9bcf95c28b2e5a3f2be6c /npc/functions/soul_menhir.txt | |
parent | 1d24be501f3f3d733344826262964255f7c6c380 (diff) | |
download | serverdata-65c634722e6a551388a63193b0c9a28d35ff845f.tar.gz serverdata-65c634722e6a551388a63193b0c9a28d35ff845f.tar.bz2 serverdata-65c634722e6a551388a63193b0c9a28d35ff845f.tar.xz serverdata-65c634722e6a551388a63193b0c9a28d35ff845f.zip |
Stop using compound names on events
Diffstat (limited to 'npc/functions/soul_menhir.txt')
-rw-r--r-- | npc/functions/soul_menhir.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/soul_menhir.txt b/npc/functions/soul_menhir.txt index 299d6067c..732322ba1 100644 --- a/npc/functions/soul_menhir.txt +++ b/npc/functions/soul_menhir.txt @@ -11,7 +11,7 @@ function script SoulMenhir { rif($@GM_EVENT, l("Send soul to the Mana Plane for GM events")), L_Aeros, rif($EVENT$ == "Valentine", l("[Valentine Day] Send soul to the Valentine Highlands!")), L_Valentine, rif($EVENT$ == "Easter", l("[Easter] Send soul to the Mana Forest!")), L_Easter, - rif($EVENT$ == "Worker Day", l("[Worker Day] Send soul to the Contributor Cave!")), L_Worker, + rif($EVENT$ == "Worker", l("[Worker Day] Send soul to the Contributor Cave!")), L_Worker, rif($EVENT$ == "Christmas", l("[Christmas] Send soul to the Christmas Workshop!")), L_Xmas, // TODO: In future there'll be an event map l("Leave it alone."), L_Return; @@ -82,7 +82,7 @@ L_Easter: close; L_Worker: - if ($EVENT$ != "Worker Day") goto L_DontPanic; + if ($EVENT$ != "Worker") goto L_DontPanic; warp "001-5", 22, 79; message strcharinfo(0), l("You are now at the Mana Plane of Existence, at the Contributor's Cave."); close; |