Browse Source

Unused methods removed.

master
MagicBot 1 year ago
parent
commit
e331f7e2ff
  1. 39
      src/engine/objects/NPC.java

39
src/engine/objects/NPC.java

@ -739,41 +739,6 @@ public class NPC extends AbstractCharacter { @@ -739,41 +739,6 @@ public class NPC extends AbstractCharacter {
return super.getLoc();
}
public float getSpawnX() {
return this.statLat;
}
public float getSpawnY() {
return this.statAlt;
}
public float getSpawnZ() {
return this.statLon;
}
//Sets the relative position to a parent zone
public void setRelPos(Zone zone, float locX, float locY, float locZ) {
//update ZoneManager's zone building list
if (zone != null) {
if (this.parentZone != null) {
if (zone.getObjectUUID() != this.parentZone.getObjectUUID()) {
this.parentZone.zoneNPCSet.remove(this);
//zone.zoneNPCSet.add(this);
}
} else {
//zone.zoneNPCSet.add(this);
}
} else if (this.parentZone != null) {
this.parentZone.zoneNPCSet.remove(this);
}
this.statLat = locX;
this.statAlt = locY;
this.statLon = locZ;
this.parentZone = zone;
}
public float getSellPercent() {
return this.sellPercent;
}
@ -782,10 +747,6 @@ public class NPC extends AbstractCharacter { @@ -782,10 +747,6 @@ public class NPC extends AbstractCharacter {
return this.buyPercent;
}
public void setBuyPercent(float buyPercent) {
this.buyPercent = buyPercent;
}
public float getBuyPercent(PlayerCharacter player) {
if (NPC.GetNPCProfits(this) == null || this.guild == null)
return this.buyPercent;

Loading…
Cancel
Save