Where would I put this? Would I make it a separate mod?shanemadden wrote: ↑Mon Dec 17, 2018 11:38 pmI'm guessing you're using https://mods.factorio.com/mod/deadlock- ... ating-bobs to add the stacks for Bob's items? There's a thread in the discussion section on the mod portal where the author mentions that the support should be coming for those in the 0.17 version (with good icons).Bizobinator wrote: ↑Mon Dec 17, 2018 6:35 pm How would I go about adding the crushed Bob/Angel ores to the stackable recipes? There are recipes for the un-crushed ores & crushed rock, but not the crushed ores
This is untested but should work assuming I'm getting the right item names from a quick glance at the Angel's source (7 seems to be skipped):
Code: Select all
if deadlock_stacking then deadlock_stacking.create("angels-ore1-crushed", nil, "deadlock-stacking-1") deadlock_stacking.create("angels-ore2-crushed", nil, "deadlock-stacking-1") deadlock_stacking.create("angels-ore3-crushed", nil, "deadlock-stacking-1") deadlock_stacking.create("angels-ore4-crushed", nil, "deadlock-stacking-1") deadlock_stacking.create("angels-ore5-crushed", nil, "deadlock-stacking-1") deadlock_stacking.create("angels-ore6-crushed", nil, "deadlock-stacking-1") deadlock_stacking.create("angels-ore8-crushed", nil, "deadlock-stacking-1") deadlock_stacking.create("angels-ore9-crushed", nil, "deadlock-stacking-1") end
I'm a bit rusty when it comes to modding... it's been at least a year since I've tinkered with any of it >_<.