diff options
Diffstat (limited to 'npc/functions/util.txt')
-rw-r--r-- | npc/functions/util.txt | 4 |
1 files changed, 4 insertions, 0 deletions
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); } |