Page 1 of 1

How do I downscale or remove alt info icons from robots?

Posted: Tue Sep 25, 2018 10:41 pm
by bathrobehero
Hey, I'd like to heavily downscale or even remove the icons of what robots are carrying but keep everything else in alt info mode.


Image

Which files should I modify?

Re: How do I downscale or remove alt info icons from robots?

Posted: Wed Sep 26, 2018 8:05 am
by eradicator
A simple custom mod with just data.lua should be able to disable all robot icons:

Code: Select all

for _,robot in data.raw["logistic-robot"] do
  robot.flags = robot.flags or {}
  table.insert(robot.flags,"hide-alt-info")
  end

Re: How do I downscale or remove alt info icons from robots?

Posted: Wed Sep 26, 2018 8:15 am
by bobingabout
I don't think modding would fix this... perhaps there should be an option in the game options to turn them off, similar to how there's one for inserter pickup and drop locations.