fixed login bug

This commit is contained in:
2024-09-07 18:01:23 -05:00
parent e5a32c83c5
commit 8f394cd01d
3 changed files with 8 additions and 18 deletions
+1 -1
View File
@@ -504,7 +504,7 @@ public class Mine extends AbstractGameObject {
return false;
ItemBase resourceIB = ItemBase.getItemBase(this.production.UUID);
return this.owningGuild.getOwnedCity().getWarehouse().depositFromMine(this, resourceIB, (int)(this.getModifiedProductionAmount() * 0.5f));
return this.owningGuild.getOwnedCity().getWarehouse().depositFromMine(this, resourceIB, this.getModifiedProductionAmount());
}
public boolean updateGuildOwner(PlayerCharacter playerCharacter) {