forked from MagicBane/Server
r8 gains 25% resource mine production bonus
This commit is contained in:
@@ -578,6 +578,19 @@ public class Mine extends AbstractGameObject {
|
|||||||
if(this.production.UUID != 7)
|
if(this.production.UUID != 7)
|
||||||
amount = amount / value;
|
amount = amount / value;
|
||||||
|
|
||||||
|
Guild owner = this.owningGuild;
|
||||||
|
|
||||||
|
City city;
|
||||||
|
if(owner != null) {
|
||||||
|
city = owner.getOwnedCity();
|
||||||
|
|
||||||
|
Building tol = null;
|
||||||
|
if (city != null)
|
||||||
|
tol = city.getTOL();
|
||||||
|
|
||||||
|
if (tol != null && tol.getRank() == 8)
|
||||||
|
return (int) (amount * 1.25f);
|
||||||
|
}
|
||||||
return amount;
|
return amount;
|
||||||
}
|
}
|
||||||
public Boolean onExit(HashSet<AbstractWorldObject> currentPlayers){
|
public Boolean onExit(HashSet<AbstractWorldObject> currentPlayers){
|
||||||
|
|||||||
Reference in New Issue
Block a user