summaryrefslogtreecommitdiff
path: root/npc/functions/politics.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/functions/politics.txt')
-rw-r--r--npc/functions/politics.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/politics.txt b/npc/functions/politics.txt
index 3fe89a765..3b942e3b4 100644
--- a/npc/functions/politics.txt
+++ b/npc/functions/politics.txt
@@ -80,7 +80,7 @@ function script POL_AdjustPrice {
.@p=0;
// Town option for tax immunity
- if (getd("$" + .@l$ + "_TAXOFF")) {
+ if (getd("$" + .@l$ + "_TAXOFF") && !(#EXILED & POL_LocToTP(.@l$))) {
.@vat=getd("$"+.@l$+"_TAX");
.@tax=.@p*.@vat/10000;
.@p-=.@tax;
@@ -100,7 +100,7 @@ function script POL_PlayerMoney {
Zeny-=.@p;
// Town option for tax immunity
- if (getd("$" + .@l$ + "_TAXOFF")) {
+ if (getd("$" + .@l$ + "_TAXOFF") && !(#EXILED & POL_LocToTP(.@l$))) {
return 0;
}