Hello! I am setting up the integration of the AAI Industry and Crash Site mods https://mods.factorio.com/mod/atan-crash-site
Since Crash Site already has production and laboratory modules, I want to disable the entities 'burner_lab' and 'burner-assembling-machine'
Unfortunately, deleting recipes from the technology tree is not enough, since 'burner_lab' as a type of 'lab' is hardcoded in the technologies "research-speed-1-6".
I ask for help, since my programming knowledge was not enough.
Thanks!
How to disable an entity?
Re: How to disable an entity?
Here's how it is:
The problem is in this parameter which is written in AAI industry:
It needs to be canceled somehow.
And here's how it should be:
The problem is in this parameter which is written in AAI industry:
Code: Select all
data.raw.lab["burner-lab"].next_upgrade = nil
data.raw.lab["burner-lab"].hidden = true
Last edited by Keysivi on Tue Dec 03, 2024 2:23 am, edited 2 times in total.
Re: How to disable an entity?
Code: Select all
burner_lab.next_upgrade = nil
Re: How to disable an entity?
Thanks for the comment.
I apologize. I inserted the wrong code.
To avoid confusing visitors, I replaced the original comment.