diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-05-24 00:57:30 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-05-24 00:57:30 -0300 |
commit | add80420d166109872a31e204ddf6d7c59381fc5 (patch) | |
tree | f1bca7a4a3412bc7c0ee657dd6ffdda544f75af3 /npc | |
parent | 4af18cb0cc0b4c3930faa3f521b30b6a93a9dbaa (diff) | |
download | serverdata-add80420d166109872a31e204ddf6d7c59381fc5.tar.gz serverdata-add80420d166109872a31e204ddf6d7c59381fc5.tar.bz2 serverdata-add80420d166109872a31e204ddf6d7c59381fc5.tar.xz serverdata-add80420d166109872a31e204ddf6d7c59381fc5.zip |
Order matters
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/main.txt | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/npc/functions/main.txt b/npc/functions/main.txt index 6ebaf0e96..807ac6a44 100644 --- a/npc/functions/main.txt +++ b/npc/functions/main.txt @@ -356,15 +356,16 @@ function script Exception { } if (.@gf & RB_ISFATAL) { - if (.@gf & RB_SPEECH) { - mesc l("This error is fatal, we stop execution."), 1; - close; - } if (.@gf & RB_DISPBOTTOM) dispbottom("This error is fatal, we stop execution."); if (.@gf & RB_DEBUGMES) debugmes("[Error] The error is fatal."); + + if (.@gf & RB_SPEECH) { + mesc l("This error is fatal, we stop execution."), 1; + close; + } end; } |