Made all callScript functions consistent

This commit is contained in:
Treeku
2014-03-19 18:26:15 +00:00
parent 604d1f7aef
commit 5df4b7c203
9 changed files with 135 additions and 135 deletions
+1 -1
View File
@@ -71,7 +71,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/", planetObj.getName(), "addPlanetSpawns", core, planetObj);
System.out.println("Loaded static objs for " + planetObj.getName());
}