summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-08-02 09:55:56 -0300
committerJesusaves <cpntb1@ymail.com>2021-08-02 09:55:56 -0300
commit366dacde211901c2eb733d6024b374a81ca6595c (patch)
tree4582e43d553ea4758641bbb33fdc87318314df03
parent8f31512aecd3779ba3055496e8cfa68b8b226fea (diff)
downloadserverdata-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
-rw-r--r--npc/025-1/ctrl.c2
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;
}