Index: binaries/data/mods/public/simulation/components/Looter.js =================================================================== --- binaries/data/mods/public/simulation/components/Looter.js +++ binaries/data/mods/public/simulation/components/Looter.js @@ -28,9 +28,10 @@ let resources = {}; for (let type of Resources.GetCodes()) resources[type] = - ApplyValueModificationsToEntity( - "Looter/Resource/"+type, lootTemplate[type] || 0, this.entity) + - (resourcesCarried[type] || 0); + Math.round( + ApplyValueModificationsToEntity( + "Looter/Resource/"+type, lootTemplate[type] || 0, this.entity) + + (resourcesCarried[type] || 0)); // Transfer resources var cmpPlayer = QueryOwnerInterface(this.entity);