Merge pull request #409 from CharonInferar/Harvesters

Harvesters and generators added
This commit is contained in:
Seefo
2014-04-10 19:58:16 -04:00
71 changed files with 3476 additions and 11 deletions
+3
View File
@@ -84,6 +84,7 @@ import services.LoginService;
import services.map.MapService;
import services.object.ObjectService;
import services.object.UpdateService;
import services.resources.HarvesterService;
import services.resources.ResourceService;
import services.retro.RetroService;
import services.spawn.SpawnService;
@@ -180,6 +181,7 @@ public class NGECore {
public HousingService housingService;
public LootService lootService;
public HarvesterService harvesterService;
// Login Server
@@ -298,6 +300,7 @@ public class NGECore {
conversationService = new ConversationService(this);
housingService = new HousingService(this);
lootService = new LootService(this);
harvesterService = new HarvesterService(this);
if (config.keyExists("JYTHONCONSOLE.PORT")) {
int jythonPort = config.getInt("JYTHONCONSOLE.PORT");