diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-08-02 09:55:56 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-08-02 09:55:56 -0300 |
commit | 366dacde211901c2eb733d6024b374a81ca6595c (patch) | |
tree | 4582e43d553ea4758641bbb33fdc87318314df03 /npc/025-1 | |
parent | 8f31512aecd3779ba3055496e8cfa68b8b226fea (diff) | |
download | serverdata-366dacde211901c2eb733d6024b374a81ca6595c.tar.gz serverdata-366dacde211901c2eb733d6024b374a81ca6595c.tar.bz2 serverdata-366dacde211901c2eb733d6024b374a81ca6595c.tar.xz serverdata-366dacde211901c2eb733d6024b374a81ca6595c.zip |
Allow Game Masters (GM 80+) to siege the Fortress Town even without the World Hero
Diffstat (limited to 'npc/025-1')
-rw-r--r-- | npc/025-1/ctrl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/025-1/ctrl.c b/npc/025-1/ctrl.c index 6a3513ace..1bd138488 100644 --- a/npc/025-1/ctrl.c +++ b/npc/025-1/ctrl.c @@ -142,7 +142,7 @@ function script FTStatue { if ($@FORTRESS_STATUE) end; // Only World Hero may interact - if (strcharinfo(0) != $MOST_HEROIC$) { + if (strcharinfo(0) != $MOST_HEROIC$ && !is_master()) { dispbottom l("I will not assault the Fortress Island by myself. Instead, I'll wait for %s.", $MOST_HEROIC$); end; } |