how do I reference a table within a different one?
this is what I got so far
sh = {} --[[sh stands for shorthand because I'm making a turtle crafting interface]]
sh["cbl"]="minecraft:cobblestone"
furnace = {
sh:cbl, sh:cbl, sh:cbl, nil,
sh:cbl, nil, sh:cbl, nil,
sh:cbl, sh:cbl, sh:cbl, nil,
}
however you might notice that this doesn't work.I've tried throwing everything but the kitchen sink of simple solutions but it looks like I'll have to use advanced techniques.
with regards
-qwerty