Merge branch 'quality_assurance' of bitbucket.org:projectswg/holocore into quality_assurance

This commit is contained in:
Obique PSWG
2015-08-27 12:45:45 -05:00
6 changed files with 204 additions and 5 deletions
+4
View File
@@ -73,12 +73,14 @@ import resources.server_info.ObjectDatabase;
import resources.server_info.ObjectDatabase.Traverser;
import services.map.MapManager;
import services.player.PlayerManager;
import services.spawn.SpawnerService;
import services.spawn.StaticService;
public class ObjectManager extends Manager {
private final MapManager mapService;
private final StaticService staticService;
private final SpawnerService spawnerService;
private final RadialService radialService;
private final ObjectDatabase<SWGObject> database;
@@ -89,6 +91,7 @@ public class ObjectManager extends Manager {
public ObjectManager() {
mapService = new MapManager();
staticService = new StaticService(this);
spawnerService = new SpawnerService(this);
radialService = new RadialService();
database = new CachedObjectDatabase<SWGObject>("odb/objects.db");
objectAwareness = new ObjectAwareness();
@@ -98,6 +101,7 @@ public class ObjectManager extends Manager {
addChildService(mapService);
addChildService(staticService);
addChildService(radialService);
addChildService(spawnerService);
}
@Override