Mine Changes

This commit is contained in:
2024-02-22 20:49:08 -06:00
parent 6e93e40454
commit 33a369821a
+8 -3
View File
@@ -346,15 +346,20 @@ public class Mine extends AbstractGameObject {
int amount = 0;
switch(this.capSize){
case 5:
amount = (int)(3000000/value);
amount = 3000000;
break;
case 10:
amount = (int)(6000000/value);
amount = 6000000;
break;
case 20:
amount = (int)(9000000/value);
amount = 9000000;
break;
}
if(this.production.UUID == 7)
amount *= 0.5f;
else
amount = amount / value;
return this.owningGuild.getOwnedCity().getWarehouse().depositFromMine(this, resourceIB, amount);
}