Reworked script service, added cloning terminals to all cloning facilities

This commit is contained in:
Light2
2013-09-16 16:42:30 +02:00
parent f6ce41e1e1
commit 351f1d6bd4
19 changed files with 128 additions and 31 deletions
+1 -1
View File
@@ -58,7 +58,7 @@ public class StaticService implements INetworkDispatch {
public void spawnPlanetStaticObjs(String planet) {
Planet planetObj = (Planet) core.terrainService.getPlanetByName(planet);
core.scriptService.callScript("scripts/static_spawns", "addPlanetSpawns", planetObj.getName(), core, planetObj);
core.scriptService.callScript("scripts/static_spawns/", "addPlanetSpawns", planetObj.getName(), core, planetObj);
System.out.println("Loaded static objs for " + planetObj.getName());
}