I solved the issue. Make a new file in BetterPowerArmorGrid, call it data-updates.lua
Paste this into the file
local icon_path = "ev-assets/graphics/icons/personal-roboport-mk2-equipment.png"
local icon_size = 64
local icon_patch = data.raw.item["personal-roboport-mk2-equipment"]
if icon_patch then
icon_patch.icon = icon_path
icon_patch.icon_size = icon_size
icon_patch.icons = nil
end
local equip_patch = data.raw["roboport-equipment"]["personal-roboport-mk2-equipment"]
if equip_patch then
equip_patch.icon = icon_path
equip_patch.icon_size = icon_size
equip_patch.icons = nil
end
local recipe_patch = data.raw.recipe["personal-roboport-mk2-equipment-recycling"]
if recipe_patch then
recipe_patch.icon = icon_path
recipe_patch.icon_size = icon_size
recipe_patch.icons = nil
end
Use my code, I don't care, just fix the mod please.