Hello I have been using Quality SE mod and encounter fatal crash with this mod.
The mod Air Scrubbing (0.2.5) caused a non-recoverable error.
Please report this error to the mod author.
Error while running event atan-air-scrubbing::on_built_entity (ID 6)
Unknown entity name: epic-atan-air-scrubber
stack traceback:
[C]: in function 'create_entity'
atan-air-scrubbing/control.lua:17: in function <atan-air-scrubbing/control.lua:2>
Issue is this mod does not recognise Quality-SE fork and does not run copatibility code.
Some changes need to be done in --src\compatibility\quality\entity-updates.lua
Firstly adjusting mod detection to account for Qualite-SE
local qualityname = nil
if not mods["quality"] then
qualityname = "quality"
end
if not mods["quality-se"] then
qualityname = "quality-se"
end
if not qualityname then
return
end
Than any calls for data.raw["quality"] need to be replaced with data.raw[qualityname].
You could also consider adding Quality and Quality-SE as optional dependencies, while it is not necessary for the code, it will let users browsing this site know, what Quality forks are supported.