You are confusing my creation of the nickel-ore ITEM with my check for nickel-ore RESOURCE, they are 2 seperate things. this code does work last I checked in 0.11, it is unchanged since then and should still work in 0.12, even though I havn't actually tested it. The change shouldn't break anything, but my version also accounts for other mods adding Nickel ore fields.NorNogaAdmin wrote:Bob, i think i see the problem here...
if you have GalenaGivesNickel enabled, you define "nickel-ore". however, your looking for no definition of nickle ore to populate lead ore
Although this would work, and fix the issue you're having, due to the nature of my code it would change ALL mining machines. In some cases (and I even considered doing this myself) you may want only higher tier mining drills to be able to mine all the resources, and the lower tier ones not to. if I do your fix, it will force all mining machines in all mods to have 6 item slots. this would probably be a bad thing, in some cases 6 might not even be enough.NorNogaAdmin wrote:Code: Select all
for i, drill in pairs(data.raw["mining-drill"]) do if not drill.storage_slots then drill.storage_slots = 6 else if drill.storage_slots < 6 then drill.storage_slots = 6 end end end
Have you tried to see what happens if you turn off Waitex? perhaps have you tried Bob's Mining mod to see if it works with my own mining machines?