Is there a way to completely remove power usage from a custom decider combinator?
I tried setting active_energy_consumption to nil but the game complains.
I could set it to a low value, but a very low value will just make the "no Power" symbol appear.
It will also still show up in the power usage graphs (and won't show my custom icon there, even though it's shown in the inventory).
It's a "hidden" entity so I would like it to not consume any power / not show up in the power consumption statistics, as the entity does not exist as far as the player is concerned.
Decider Combinator without power usage
-
- Inserter
- Posts: 27
- Joined: Sun Jul 09, 2017 9:19 am
- Contact:
Re: Decider Combinator without power usage
Try using a void energy_source:SilentStorm wrote: ↑Thu Jun 01, 2023 3:29 pmIs there a way to completely remove power usage from a custom decider combinator?
Code: Select all
energy_source = {type = "void"}
A good mod deserves a good changelog. Here's a tutorial (WIP) about Factorio's way too strict changelog syntax!
-
- Inserter
- Posts: 27
- Joined: Sun Jul 09, 2017 9:19 am
- Contact:
Re: Decider Combinator without power usage
That seems to work, thanks