milo crafting improvements

This commit is contained in:
kepler155c@gmail.com
2019-06-26 12:10:34 -04:00
parent 8a88df815f
commit bbd36ec96a
7 changed files with 207 additions and 43 deletions

View File

@@ -25,9 +25,10 @@ local wizardPage = UI.WizardPage {
},
}
-- Brewing stand shows as Cauldron is Minecraft 1.10
function wizardPage:isValidType(node)
local m = device[node.name]
return m and m.type == 'minecraft:brewing_stand'and {
return m and (m.type == 'minecraft:brewing_stand' or m.type == 'Cauldron') and {
name = 'Brewing Stand',
value = 'brewingStand',
category = 'machine',