diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-10 21:47:54 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-10 21:47:54 -0300 |
commit | b9cf2f7f9cfeaa90a80311b4b6ec9ec65915959e (patch) | |
tree | 92270590b47c9174dc26f4f5488a10c5bce905ea /npc/functions/util.txt | |
parent | 17f52684d8dec6b08b78619a264e949ccd79bd5f (diff) | |
download | serverdata-b9cf2f7f9cfeaa90a80311b4b6ec9ec65915959e.tar.gz serverdata-b9cf2f7f9cfeaa90a80311b4b6ec9ec65915959e.tar.bz2 serverdata-b9cf2f7f9cfeaa90a80311b4b6ec9ec65915959e.tar.xz serverdata-b9cf2f7f9cfeaa90a80311b4b6ec9ec65915959e.zip |
Fix some crazy bugs. With this, travel Tulim->Hurns should be fine.
Diffstat (limited to 'npc/functions/util.txt')
-rw-r--r-- | npc/functions/util.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/npc/functions/util.txt b/npc/functions/util.txt index 1558fb4b7..5449ca97a 100644 --- a/npc/functions/util.txt +++ b/npc/functions/util.txt @@ -100,16 +100,18 @@ function script nard_reputation { function script nard_time { // Estimates time to move by ship from LOCATION$ to getarg(0) - // Candor + // From Candor if (LOCATION$ == "Candor") { if (getarg(0) == "Tulim") return 22000; } - // Candor + // From Tulimshar if (LOCATION$ == "Tulim") { if (getarg(0) == "Candor") return 22000; + if (getarg(0) == "Hurns") + return 19000; } |