Removed unused method.

This commit is contained in:
2023-04-23 10:01:18 -04:00
parent 513c254479
commit 59e3938a72
3 changed files with 6 additions and 27 deletions
+4 -3
View File
@@ -466,11 +466,12 @@ public enum BuildingManager {
rank = item.getChargesRemaining() * 10;
else rank = 10;
Mob mob = null;
NPC npc = null;
Mob mob;
NPC npc;
if (NPC.ISWallArcher(contractID.getContractID())) {
mob = Mob.createMob( contractID.getMobbaseID(), NpcLoc, contractOwner.getGuild(), true, zone, building, contractID.getContractID(), pirateName, rank);
mob = Mob.createMob( contractID.getMobbaseID(), NpcLoc, contractOwner.getGuild(), true, zone, building, contractID.getContractID(), pirateName, rank * 10);
if (mob == null)
return false;