From 550f4c885dc9e7ea48fd508fac4d24c5d9ce5783 Mon Sep 17 00:00:00 2001 From: Cekis Date: Fri, 20 Jan 2017 19:36:45 +0000 Subject: [PATCH] Added logging for situation where a spawn list could not be retrieved for an area. --- .../compiled/game/script/systems/spawning/spawn_base.java | 1 + 1 file changed, 1 insertion(+) diff --git a/sku.0/sys.server/compiled/game/script/systems/spawning/spawn_base.java b/sku.0/sys.server/compiled/game/script/systems/spawning/spawn_base.java index ec3f2a357..56b3b7a70 100755 --- a/sku.0/sys.server/compiled/game/script/systems/spawning/spawn_base.java +++ b/sku.0/sys.server/compiled/game/script/systems/spawning/spawn_base.java @@ -482,6 +482,7 @@ public class spawn_base extends script.base_script public String getFictionalRegionFileName(String strPlanet, String strFullName) throws InterruptedException { String strRegionName = utils.unpackString(strFullName).getAsciiId(); + LOG("spawning", "Unable to get spawns for planet (" + strPlanet + ") in region with name (" + strFullName + ")."); return "datatables/spawning/spawn_lists/" + strPlanet + "/" + strRegionName + ".iff"; } public String getOverLoadRegionFileName(String strRegionName) throws InterruptedException