--- christmas_craft.old/init.lua +++ christmas_craft/init.lua @@ -13,12 +13,9 @@ local conf_table = config:to_table() - - - --look into readme.md how to change settings local defaults = { -enable_snowing = "true", +enable_snowing = "false", enable_crafts = "true", } @@ -36,7 +33,6 @@ dofile(MODPATH .."/mod_support/mtfoods.lua")--if the 4seasons mod is installed execute this file end - --if snow enabled, let it snow if config:get("enable_snowing") == "true" then minetest.log("info","let it snow, let it snow, let it snow.") @@ -70,6 +66,7 @@ legacy_wallmounted = true, sounds = default.node_sound_defaults(), }) + -- complex node -- --[[ snowball_DAMAGE=0.5 @@ -87,7 +84,6 @@ return item end - --The snowball Entity snow_snowball_ENTITY={ physical = false, @@ -102,7 +98,6 @@ } - --Snowball_entity.on_step()--> called when snowball is moving. snow_snowball_ENTITY.on_step = function(self, dtime)