summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-10-07 21:22:28 -0300
committerJesusaves <cpntb1@ymail.com>2020-10-07 21:22:28 -0300
commitbdf51a8147bcf78f85b2941438ab2095e93c4144 (patch)
treef6d86e3e4dbf8d4b0e3f19dbba98cea1e137d6ce
parentee1dab7de4688d8859cc8874abc74a77965aa0e3 (diff)
downloadserverdata-bdf51a8147bcf78f85b2941438ab2095e93c4144.tar.gz
serverdata-bdf51a8147bcf78f85b2941438ab2095e93c4144.tar.bz2
serverdata-bdf51a8147bcf78f85b2941438ab2095e93c4144.tar.xz
serverdata-bdf51a8147bcf78f85b2941438ab2095e93c4144.zip
Annoying ^^
-rw-r--r--npc/functions/politics.txt2
-rw-r--r--npc/functions/util.txt4
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);
}