mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-09-21 06:13:13 -04:00
Added Tracking Droids, refined Bounty Missions
A few things need to be done like the stacks for the droids. Right now they won't be destroyed from inventory until this is implemented.
This commit is contained in:
@@ -897,9 +897,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() {
|
||||
|
||||
Reference in New Issue
Block a user