Resource Merchant

This commit is contained in:
2024-02-22 19:06:25 -06:00
parent 46a9dad407
commit 6e14f723da
+2 -2
View File
@@ -662,10 +662,10 @@ public class WorldServer {
Zone sdr = sdrHut.parentZone; Zone sdr = sdrHut.parentZone;
boolean exists = false; boolean exists = false;
for(NPC merchant : sdr.zoneNPCSet) for(NPC merchant : sdr.zoneNPCSet)
if(merchant.contract.getContractID() == 12287) if(merchant.contract.getContractID() == 900)
exists = true; exists = true;
if (!exists) { if (!exists) {
NPC runeMerchant = NPC.createNPC("Stocky", 12287, Vector3fImmutable.ZERO, Guild.getGuild(6), ZoneManager.getZoneByUUID(656), (short) 70, null); NPC runeMerchant = NPC.createNPC("Stocky", 900, Vector3fImmutable.ZERO, Guild.getGuild(6), ZoneManager.getZoneByUUID(656), (short) 70, null);
runeMerchant.sellPercent = 9999.00f; runeMerchant.sellPercent = 9999.00f;
runeMerchant.buildingUUID = sdrHut.getObjectUUID(); runeMerchant.buildingUUID = sdrHut.getObjectUUID();
runeMerchant.building = sdrHut; runeMerchant.building = sdrHut;