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.txt14
1 files changed, 7 insertions, 7 deletions
diff --git a/npc/functions/politics.txt b/npc/functions/politics.txt
index 1792b73f9..faa6133f8 100644
--- a/npc/functions/politics.txt
+++ b/npc/functions/politics.txt
@@ -7,12 +7,12 @@
// not a citzen (yet). It'll be... I'll think in a name better than Minister.
// Perhaps, Town Administrator.
// NPCs:
-// Tulim -
-// Halin -
+// Tulim -
+// Halin -
// Hurns - Airlia
-// LoF -
-// Nival -
-// Frostia -
+// LoF -
+// Nival -
+// Frostia -
// Variables:
// $LOC_MAYOR$ - Stores the name of current Hurnscald Mayor
// $LOC_MONEY - Total money reserves of Hurnscald
@@ -30,7 +30,7 @@
function script PurchaseTaxes {
.@tax=0;
for (.@i=0; .@i < getarraysize(@bought_nameid); .@i++) {
- // Note: Some NPC might not
+ // Note: Some NPC might not
.@price=getiteminfo(@bought_nameid[.@i], ITEMINFO_BUYPRICE);
.@tax+=.@price*@bought_quantity[.@i];
}
@@ -50,7 +50,7 @@ function script PurchaseTaxes {
function script SaleTaxes {
.@tax=0;
for (.@i=0; .@i < getarraysize(@sold_nameid); .@i++) {
- // Note: Some NPC might not
+ // Note: Some NPC might not
.@price=getiteminfo(@sold_nameid[.@i], ITEMINFO_SELLPRICE);
.@tax+=.@price*@sold_quantity[.@i];
}