fixed profit error for NPCs

This commit is contained in:
2024-07-05 19:15:43 -05:00
parent 7688d21fe6
commit 6fb5fce4d3
2 changed files with 13 additions and 5 deletions
+1 -1
View File
@@ -356,7 +356,7 @@ public class Warehouse extends AbstractWorldObject {
public static int getSellStackSize(int id){
if(id == 1705032)
return 10;
return (int)(3000000 / getCostForResource(id));
return 3000000 / getCostForResource(id);
}
public ConcurrentHashMap<ItemBase, Integer> getResources() {