gold from mines no longer produces at half value

This commit is contained in:
2024-05-28 19:41:38 -05:00
parent c922d9c532
commit ad05f0d7bc
+2 -3
View File
@@ -647,10 +647,9 @@ public class Mine extends AbstractGameObject {
amount = 12000000; amount = 12000000;
break; break;
} }
if(this.production.UUID == 7) if(this.production.UUID != 7)
amount *= 0.5f;
else
amount = amount / value; amount = amount / value;
return (int) amount; return (int) amount;
} }
public Boolean onExit(HashSet<AbstractWorldObject> currentPlayers){ public Boolean onExit(HashSet<AbstractWorldObject> currentPlayers){