diff options
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/politics.txt | 2 | ||||
-rw-r--r-- | npc/functions/util.txt | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/npc/functions/politics.txt b/npc/functions/politics.txt index 62b2d2ed6..d48d04224 100644 --- a/npc/functions/politics.txt +++ b/npc/functions/politics.txt @@ -280,7 +280,7 @@ function script POL_Information { mesc l("An account may vote anywhere, but only once per town (weekly)."); next; mesc l("The town administrator benefits for free services on the town."); - mesc l("Also, they can control the city taxes, which incide upon purchases and sales within the town."); + mesc l("Also, they can control the city taxes, which are applied upon purchases and sales within the town."); mesc l("However, they must visit their town office and do daily paperwork, every day. Otherwise, town reputation will go down."); mesc l("If town reputation reaches zero, the town will only be able to get money with taxes."); return; diff --git a/npc/functions/util.txt b/npc/functions/util.txt index 619abf2c9..e612bf5a3 100644 --- a/npc/functions/util.txt +++ b/npc/functions/util.txt @@ -973,6 +973,10 @@ function script POL_LocToTP { if (.@tw$ == "CANDOR") return TP_CANDOR; + // TODO: Change this to use npc/config/location.txt instead + if (.@tw$ == "LILIT") + return TP_LILIT; + return Exception("Invalid town requested / POL_LocToTP", RB_DEFAULT|RB_SPEECH, -1); } |