This commit is contained in:
Waverunner
2014-05-03 18:10:55 -04:00
12 changed files with 309 additions and 32 deletions
+2 -3
View File
@@ -916,9 +916,8 @@ public class ObjectService implements INetworkDispatch {
if(!core.getConfig().getString("MOTD").equals(""))
creature.sendSystemMessage(core.getConfig().getString("MOTD"), (byte) 2);
BountyListItem bounty = (BountyListItem) core.getBountiesODB().get(creature.getObjectID());
if (bounty != null)
core.missionService.getBountyList().add(bounty);
if (core.getBountiesODB().contains(creature.getObjectId()))
core.missionService.getBountyList().add((BountyListItem) core.getBountiesODB().get(creature.getObjectId()));
if (creature.getSlottedObject("datapad") != null) {
creature.getSlottedObject("datapad").viewChildren(creature, true, false, new Traverser() {