NPC have 0 maint, fix for resource merchant

This commit is contained in:
2024-07-03 20:15:41 -05:00
parent b1de3755fd
commit c49204aeeb
4 changed files with 160 additions and 104 deletions
+1 -5
View File
@@ -167,11 +167,7 @@ public class Blueprint {
// based upon the building's current rank
public static int getNpcMaintCost(int rank) {
int maintCost = Integer.MAX_VALUE;
maintCost = (9730 * rank) + 1890;
return maintCost;
return 0;
}
public int getMaxRank() {