diff options
Diffstat (limited to 'npc/commands')
-rw-r--r-- | npc/commands/event.txt | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/npc/commands/event.txt b/npc/commands/event.txt index 521ab3b08..7257729c0 100644 --- a/npc/commands/event.txt +++ b/npc/commands/event.txt @@ -249,10 +249,7 @@ OnCall: OnEffect: @toeventchk=0; // Calculate - if (!$@GM_EVENT && !$@MK_SCENE && $EVENT$ == "") { - dispbottom l("The mana bridge is closed at the moment."); - end; - } else if (BaseLevel < 10) { + if (BaseLevel < 10) { dispbottom l("You are not strong enough to survive this trip."); end; } else if (readparam(Sp) < @toeventval2) { @@ -336,6 +333,12 @@ OnEffect: } } + // Block here + if (!$@GM_EVENT && !$@MK_SCENE && $EVENT$ == "") { + dispbottom l("The mana bridge is closed at the moment."); + end; + } + // Seems like it was a Blame Saulc-like event... dispbottom l("Have a nice @@ day!", $EVENT$); dispbottom l("The mana bridge is closed at the moment."); |