diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-05-30 19:27:45 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-05-30 19:27:45 -0300 |
commit | 86db53f0aff7af8233d86710b95f9b5aac62d06e (patch) | |
tree | 0850db1c45786b2dae1b35ece98526b7f4e6b7a3 /npc/commands | |
parent | 61f0a503885b0967cf714aab5a662ba80889c75d (diff) | |
download | serverdata-86db53f0aff7af8233d86710b95f9b5aac62d06e.tar.gz serverdata-86db53f0aff7af8233d86710b95f9b5aac62d06e.tar.bz2 serverdata-86db53f0aff7af8233d86710b95f9b5aac62d06e.tar.xz serverdata-86db53f0aff7af8233d86710b95f9b5aac62d06e.zip |
Regex without modifiers (?)
Diffstat (limited to 'npc/commands')
-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 b1a62cba3..564531d52 100644 --- a/npc/commands/event.txt +++ b/npc/commands/event.txt @@ -108,7 +108,7 @@ OnCall: dispbottom l("You need all your mana to do this trip."); else if (readparam(Hp) != readparam(MaxHp)) dispbottom l("You cannot be hurt to do this trip."); - else if (getmapname() ~= "/001-*/g") + else if (getmapname() ~= "001-*") dispbottom l("You are already at the Mana Plane of Existence."); else if (getmapname() == "boss" || getmapname() == "sec_pri") dispbottom l("The Mana Plane is currently out of reach."); |