Index: ps/trunk/binaries/data/mods/public/simulation/components/ResourceGatherer.js =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/components/ResourceGatherer.js +++ ps/trunk/binaries/data/mods/public/simulation/components/ResourceGatherer.js @@ -505,6 +505,12 @@ this.RemoveFromPlayerCounter(msg.from); return; } + if (this.lastGathered && msg.from !== INVALID_PLAYER) + { + const resource = this.lastGathered; + this.RemoveFromPlayerCounter(msg.from); + this.AddToPlayerCounter(resource); + } this.RecalculateGatherRates(); this.RecalculateCapacities();