You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The fix for PyAL does not correctly handles the case where PyAL is not active.
Expected result
If I don't have PyAL, I should be able to stack 'organics'
Further Info
I am not sure how PyAL does the switch, but if it does a blind global recipe ingredient replace, in the same way as angel mods often does, you'll have to check and correct the stacking recipe in data-final-fixes.
Another fix would be to stack 'organics' in migrations/shared/pycoalprocessing.lua
ifnotmods["pyalienlife"] then-- conditional add 'organics' the value to the returned arrayend
and in migrations/shared/pyalienlife.lua
ifmods["pyalienlife"] then-- this check should be file-wide, not just for this item-- conditional add 'organic-matter' the value to the returned arrayend
The text was updated successfully, but these errors were encountered:
Short Description
The fix for PyAL does not correctly handles the case where PyAL is not active.
Expected result
If I don't have PyAL, I should be able to stack 'organics'
Further Info
I am not sure how PyAL does the switch, but if it does a blind global recipe ingredient replace, in the same way as angel mods often does, you'll have to check and correct the stacking recipe in data-final-fixes.
Another fix would be to stack 'organics' in migrations/shared/pycoalprocessing.lua
and in migrations/shared/pyalienlife.lua
The text was updated successfully, but these errors were encountered: