diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-05-30 19:32:24 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-05-30 19:32:24 -0300 |
commit | b732d581cebcc97f5a831cf3775525942acc7020 (patch) | |
tree | d7d74336cb1dc4e2c5434adec5b28c843d056a5e | |
parent | 86db53f0aff7af8233d86710b95f9b5aac62d06e (diff) | |
download | serverdata-b732d581cebcc97f5a831cf3775525942acc7020.tar.gz serverdata-b732d581cebcc97f5a831cf3775525942acc7020.tar.bz2 serverdata-b732d581cebcc97f5a831cf3775525942acc7020.tar.xz serverdata-b732d581cebcc97f5a831cf3775525942acc7020.zip |
Do not allow @toevent on 000-x maps (uh, you need BaseLevel 10 anyway)
-rw-r--r-- | npc/commands/event.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/commands/event.txt b/npc/commands/event.txt index 564531d52..1bcab8879 100644 --- a/npc/commands/event.txt +++ b/npc/commands/event.txt @@ -110,7 +110,7 @@ OnCall: dispbottom l("You cannot be hurt to do this trip."); else if (getmapname() ~= "001-*") dispbottom l("You are already at the Mana Plane of Existence."); - else if (getmapname() == "boss" || getmapname() == "sec_pri") + else if (getmapname() == "boss" || getmapname() == "sec_pri" || getmapname() ~= "000-*") dispbottom l("The Mana Plane is currently out of reach."); else warp "001-1", 235, 26; |