diff --git a/minetest.conf b/minetest.conf index 73e5a2b..1914b33 100644 --- a/minetest.conf +++ b/minetest.conf @@ -75,6 +75,9 @@ toolranks_use_multiplier = 64.0 # mod: toolranks extras toolranks_extras.farming = false +# mod: anvil +anvil_hammer_is_repairable = false + # mod: snowdrift snowdrift.enable_abms = true @@ -93,6 +96,11 @@ hudbars_autohide_stamina = false # mod: techpack/gravelsieve gravelsieve_ore_rarity = 0.5 +# mod: techpack/tubelib +tubelib_basalt_stone_enabled = false +tubelib_max_num_forceload_blocks = 32 +tubelib_machine_aging_value = 512 + # mod: treecapacitator treecapitator.drop_leaf = true treecapitator.no_hand_capitation = true diff --git a/mods/_wbg/modcompat/init.moon b/mods/_wbg/modcompat/init.moon index 45ea399..3be606e 100644 --- a/mods/_wbg/modcompat/init.moon +++ b/mods/_wbg/modcompat/init.moon @@ -1,5 +1,11 @@ hb.settings.max_bar_length = 230 -- hudbars is a bit broken +do -- repairing tools is more useful + minetest.register_craft { + type: "toolrepair" + additional_wear: -0.5 + } + do -- unifying toolranks toolranks_extras.register_tool_type "battleaxe", "battle axe", "Swings" toolranks_extras.register_tool_type "pick", "pickaxe" @@ -101,3 +107,10 @@ do -- storage_interface doesn't know about drawers drawernode 'junglewood' drawernode 'pine_wood' drawernode 'wood' + +do -- better burn time for biofuel + minetest.register_craft { + type: "fuel" + recipe: "tubelib_addons1:biofuel" + burntime: 50 -- right between coal and lava + }