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 8dfbb2aaf..9d22c5ac3 100644
--- a/npc/functions/politics.txt
+++ b/npc/functions/politics.txt
@@ -45,7 +45,7 @@ function script PurchaseTaxes {
return;
}
-// Proccess Taxes from sales (7% from purchase tax)
+// Proccess Taxes from sales (20% from purchase tax)
// SaleTaxes( Location )
function script SaleTaxes {
.@tax=0;
@@ -56,7 +56,7 @@ function script SaleTaxes {
}
.@loc$=strtoupper(getarg(0, LOCATION$));
.@vat=getd("$"+.@loc$+"_TAX");
- .@vat=.@vat/15; // Only 7% of purchase tax, this is often 0.07%
+ .@vat=.@vat*2/10; // Only 20% of purchase tax, this is often 0.2%
.@tax=.@tax*.@vat/10000;
if (.@tax) {
debugmes "Sale: %s paid %d in taxes to %s prefecture!", strcharinfo(0), .@tax, .@loc$;