diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/politics.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/politics.txt b/npc/functions/politics.txt index e99079b19..b97cdfb12 100644 --- a/npc/functions/politics.txt +++ b/npc/functions/politics.txt @@ -396,7 +396,7 @@ function script POL_Manage { if (askyesno() == ASK_YES) { .@GP=getd("$"+getarg(0)+"_MONEY"); setd(.@town$+"_MONEY", .@GP-.@cost); - setd(.@town$+"_EXPORT", .@EX+3); + setd(.@town$+"_EXPORT", .@EX+rand2(4,6)); mesc l("Investment executed"), 2; next; } @@ -424,7 +424,7 @@ function script POL_Manage { break; // Mark 30: TAXES case 30: - .@cost=.@TX/10; + .@cost=.@TX/11; mesc l("Raising Taxes"), 3; mesc l("You need @@ Reputation to make this investment.", .@cost); mesc l("Taxes will raise in 0.01~0.03%, capped at 10%."); |