diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-10-04 12:19:51 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-10-04 12:19:51 -0300 |
commit | 312ca5d12764cea9d91ebc7f31c68ca3dba4990d (patch) | |
tree | ce73457bc04b4e145e05d3799dcedb7658f6102a /npc/functions/util.txt | |
parent | 2d9674e9b64eae4388e0ebd5ac1ac00aef000300 (diff) | |
download | serverdata-312ca5d12764cea9d91ebc7f31c68ca3dba4990d.tar.gz serverdata-312ca5d12764cea9d91ebc7f31c68ca3dba4990d.tar.bz2 serverdata-312ca5d12764cea9d91ebc7f31c68ca3dba4990d.tar.xz serverdata-312ca5d12764cea9d91ebc7f31c68ca3dba4990d.zip |
Register Candor as a town (But no townhall)
Diffstat (limited to 'npc/functions/util.txt')
-rw-r--r-- | npc/functions/util.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/npc/functions/util.txt b/npc/functions/util.txt index a57162b5d..619abf2c9 100644 --- a/npc/functions/util.txt +++ b/npc/functions/util.txt @@ -968,7 +968,10 @@ function script POL_LocToTP { return TP_NIVAL; if (.@tw$ == "FROSTIA") - return TP_FROSTIA; + return TP_FROST; + + if (.@tw$ == "CANDOR") + return TP_CANDOR; return Exception("Invalid town requested / POL_LocToTP", RB_DEFAULT|RB_SPEECH, -1); } |