forked from mtcontrib/homedecor_modpack
make homedecor game agnostic (#28)
* make materials.lua with hades, minetest game, farlands items * make textures file for central handling * make mods game agnostic * take out the trash * handle multiple seats in sofas * add github luacheck workflow and various luacheck fixes * add fluxionary scope creep * fix devtest breaking right to a name policy Co-authored-by: wsor4035 <24964441+wsor4035@users.noreply.github.com> Co-authored-by: SFENCE <sfence.software@gmail.com>
This commit is contained in:
@ -143,7 +143,10 @@ function homedecor.register_furnace(name, furnacedef)
|
||||
description = description,
|
||||
tiles = make_tiles(furnacedef.tiles, furnacedef.tile_format, false),
|
||||
groups = furnacedef.groups or {cracky=2},
|
||||
sounds = furnacedef.sounds or default.node_sound_wood_defaults(),
|
||||
sounds = furnacedef.sounds,
|
||||
_sound_def = {
|
||||
key = "node_sound_wood_defaults",
|
||||
},
|
||||
on_construct = furnace_construct,
|
||||
can_dig = furnace_can_dig,
|
||||
allow_metadata_inventory_put = furnace_allow_put,
|
||||
@ -158,7 +161,10 @@ function homedecor.register_furnace(name, furnacedef)
|
||||
light_source = 8,
|
||||
drop = "homedecor:" .. name,
|
||||
groups = furnacedef.groups or {cracky=2, not_in_creative_inventory=1},
|
||||
sounds = furnacedef.sounds or default.node_sound_stone_defaults(),
|
||||
sounds = furnacedef.sounds,
|
||||
_sound_def = {
|
||||
key = "node_sound_stone_defaults",
|
||||
},
|
||||
on_construct = furnace_construct,
|
||||
can_dig = furnace_can_dig,
|
||||
allow_metadata_inventory_put = furnace_allow_put,
|
||||
|
Reference in New Issue
Block a user