diff options
-rw-r--r-- | npc/functions/politics.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/functions/politics.txt b/npc/functions/politics.txt index a3721cf7c..19fdcda81 100644 --- a/npc/functions/politics.txt +++ b/npc/functions/politics.txt @@ -272,7 +272,7 @@ function script POL_TownInfo { .@TX=getd("$"+getarg(0)+"_TAX"); .@EX=getd("$"+getarg(0)+"_EXPORT"); .@RP=getd("$"+getarg(0)+"_REPUTATION"); - if (strcharinfo(0) == .@MAYOR$) { + if (strcharinfo(0) == .@MAYOR$ || is_gm()) { mesc l("Town Money: @@", .@GP), 2; mesc l("Town Reputation: @@ | @@.@@ %% Tax", .@RP, .@TX/100, .@TX%100), 2; mesc l("Town Weekly Exports: @@", .@EX), 2; |