diff --git a/README.md b/README.md index 098826b..fe20af1 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,7 @@ New In This Version ------------------- Name changed to Your Dad's BBQ Mod. Added a new smoker, renamed old smoker "Propane Grill." +Grills, propane, bags of charcoal, and beer no longer kill grass. Added spatula, basting brush, and grill brush. All three play sounds when used with any of the grills while they are active. Removed mutton (Mobs-Redo has offically added mutton). Hotdog and hamburger meats must now be crafted, cooked, and combined with bread to make finished product. diff --git a/crafts.lua b/crafts.lua index ab6aa51..7bfe082 100644 --- a/crafts.lua +++ b/crafts.lua @@ -37,6 +37,7 @@ minetest.register_node("bbq:chimney_smoke", { inventory_image = "bbq_chimney_smoke.png", wield_image = "bbq_chimney_smoke.png", drawtype = "plantlike", + sunlight_propagates = true, tiles = { { image = "bbq_chimney_smoke_animation.png", @@ -94,6 +95,7 @@ minetest.register_node("bbq:charcoal_bag", { inventory_image = "bbq_charcoal_bag.png", wield_image = "bbq_charcoal_bag.png", drawtype = "plantlike", + sunlight_propagates = true, tiles = { "bbq_charcoal_bag_top.png", "bbq_charcoal_bag_top.png", "bbq_charcoal_bag_side.png", "bbq_charcoal_bag_side.png", @@ -125,6 +127,7 @@ minetest.register_node("bbq:propane", { inventory_image = "bbq_propane.png", wield_image = "bbq_propane.png", drawtype = "plantlike", + sunlight_propagates = true, tiles = {"bbq_propane.png"}, groups = {explody = 1, dig_immediate = 3, attached_node = 1}, sounds = default.node_sound_metal_defaults(), @@ -142,6 +145,7 @@ minetest.register_node("bbq:beer", { inventory_image = "bbq_beer.png", wield_image = "bbq_beer.png", drawtype = "plantlike", + sunlight_propagates = true, tiles = { "bbq_beer_top.png", "bbq_beer_top.png^[transformFy", "bbq_beer.png", "bbq_beer.png", diff --git a/kettle.lua b/kettle.lua index 7a6eb21..42d903e 100644 --- a/kettle.lua +++ b/kettle.lua @@ -438,7 +438,7 @@ minetest.register_node("bbq:kettle_grill_base", { "bbq_kettle.png^[transformFX", "bbq_kettle.png", "bbq_kettle_side.png", "bbq_kettle_side.png", }, - + sunlight_propagates = true, paramtype2 = "facedir", drawtype = "nodebox", node_box = { diff --git a/propane_grill.lua b/propane_grill.lua index ce34ef3..6c7256d 100644 --- a/propane_grill.lua +++ b/propane_grill.lua @@ -276,6 +276,7 @@ minetest.register_node("bbq:propane_grill", { }, }, + sunlight_propagates = true, groups = {cracky=2}, legacy_facedir_simple = true, is_ground_content = false, @@ -372,14 +373,7 @@ minetest.register_node("bbq:propane_grill_active", { }, - - - - - - - - + sunlight_propagates = true, drop = "bbq:propane_grill", groups = {cracky=2, not_in_creative_inventory=1}, legacy_facedir_simple = true, diff --git a/smoker.lua b/smoker.lua index 78652b4..dd3e19f 100644 --- a/smoker.lua +++ b/smoker.lua @@ -291,7 +291,7 @@ minetest.register_node("bbq:smoker", { }, }, - + sunlight_propagates = true, groups = {cracky=2}, legacy_facedir_simple = true, is_ground_content = false, @@ -416,15 +416,7 @@ minetest.register_node("bbq:smoker_active", { }, }, - - - - - - - - - + sunlight_propagates = true, drop = "bbq:smoker", groups = {cracky=2, not_in_creative_inventory=1}, legacy_facedir_simple = true,