prospector costs 500k

This commit is contained in:
2024-05-15 21:21:35 -05:00
parent 49e5be959f
commit 06309daae6
+9
View File
@@ -210,6 +210,15 @@ public class Contract extends AbstractGameObject {
} }
return returnList; return returnList;
} }
if(this.getObjectUUID() == 900){
for(MobEquipment me : this.sellInventory){
if(me.getItemBase().getName().equals("Prospector")){
me.magicValue = 500;
} else{
me.magicValue = 1000;
}
}
}
return this.sellInventory; return this.sellInventory;
} }