Fixed customization delta, changed bounty list to bounty map, added SurveyMissionObjective

This commit is contained in:
Waverunner
2014-05-06 19:08:00 -04:00
parent 98134130c0
commit f8c26e9658
9 changed files with 118 additions and 46 deletions
+2 -2
View File
@@ -901,8 +901,8 @@ public class ObjectService implements INetworkDispatch {
if(!core.getConfig().getString("MOTD").equals(""))
creature.sendSystemMessage(core.getConfig().getString("MOTD"), (byte) 2);
if (core.getBountiesODB().contains(creature.getObjectId()))
core.missionService.getBountyList().add((BountyListItem) core.getBountiesODB().get(creature.getObjectId()));
if (core.getBountiesODB().contains(creature.getObjectID()))
core.missionService.getBountyMap().put(creature.getObjectID(), (BountyListItem) core.getBountiesODB().get(creature.getObjectID()));
if (creature.getSlottedObject("datapad") != null) {
creature.getSlottedObject("datapad").viewChildren(creature, true, false, new Traverser() {