this mod is setting heat shield rocket capacity from 1300 to 16.
i have let chat gpt write a small mod fixing this issue by adding 1 change.
here is the mod., is someone needs it:
https://files.fm/f/kshumj2qjq
in future you can simple add this code in data-final-fixes.lua
-- Restore explicit bob heat shield weight so rocket capacity stays high.
do
local heat_shield = data.raw.item and data.raw.item["bob-heat-shield-tile"]
if heat_shield then
heat_shield.weight = 770
log("[space-age-bobs-compat] Set bob-heat-shield-tile weight to 770")
end
end
log is optional of course