Add recipe for creating spawnegg

master
Jordan Irwin 2021-05-05 04:12:41 -07:00
parent 2124037c20
commit 784945c5e0
1 changed files with 10 additions and 0 deletions

View File

@ -31,3 +31,13 @@ antum.spawneggs.modname = core.get_current_modname()
antum.spawneggs.modpath = core.get_modpath(antum.spawneggs.modname)
antum.loadScript('eggs')
if core.registered_items["mobs:egg"] then
core.register_craft({
output = "spawneggs:egg",
recipe = {
{"mobs:egg", "mobs:egg"},
{"mobs:egg", "mobs:egg"},
},
})
end