Browse Source

More slotting work.

master
MagicBot 2 years ago
parent
commit
65e7566d0f
  1. 3
      src/engine/objects/Mob.java
  2. 6
      src/engine/objects/NPC.java

3
src/engine/objects/Mob.java

@ -807,8 +807,7 @@ public class Mob extends AbstractIntelligenceAgent { @@ -807,8 +807,7 @@ public class Mob extends AbstractIntelligenceAgent {
// only if this building has a blueprint.
// otherwise use the mob cache location.
if (this.building != null && building.getBlueprintUUID() != 0
&& this.loadID != 0) {
if (this.building != null && building.getBlueprintUUID() != 0) {
int maxSlots = 10;

6
src/engine/objects/NPC.java

@ -132,7 +132,6 @@ public class NPC extends AbstractCharacter { @@ -132,7 +132,6 @@ public class NPC extends AbstractCharacter {
this.parentZone = parent;
initializeMob();
clearStatic();
this.dbID = MBServerStatics.NO_DB_ROW_ASSIGNED_YET;
@ -356,8 +355,7 @@ public class NPC extends AbstractCharacter { @@ -356,8 +355,7 @@ public class NPC extends AbstractCharacter {
// For some reason the npc is created and initialized twice when
// createMobWithNoID() is called.
if (this.building != null &&
this.loadID != 0) {
if (this.building != null) {
// Artillery Tower Captains use a hardcoded slot not first available
@ -1617,8 +1615,6 @@ public class NPC extends AbstractCharacter { @@ -1617,8 +1615,6 @@ public class NPC extends AbstractCharacter {
if (npc.building == null)
return -1;
BuildingModelBase buildingModel = BuildingModelBase.getModelBase(npc.building.getMeshUUID());
if (buildingModel == null)

Loading…
Cancel
Save