Page 1 of 1

HELP!!!

PostPosted: Fri Apr 26, 2013 14:50
by brainiacbob
hello. i was trying to build a giant snowman in minetest but accidentally set it on fire using lava. i would like to get it back so is there any way to eliminate fire from minetest. my whole snowman isnt burned down yet and if i can eliminate fire thani can save part of it. any help appreciated thanks. if that is not possible is there any way to make wool inflammable.

PostPosted: Fri Apr 26, 2013 15:07
by Jonathan
You can make wool fire proof by going to the init.lua file in "minetest-0.4.6\games\common\mods\wool" and remove the flammable property from the group.

Change From:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
    minetest.register_node("wool:"..name, {
        description = desc.." Wool",
        tiles = {"wool_"..name..".png"},
        groups = {snappy=2,choppy=2,oddly_breakable_by_hand=3,flammable=3,wool=1},
    })


Change To:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
    minetest.register_node("wool:"..name, {
        description = desc.." Wool",
        tiles = {"wool_"..name..".png"},
        groups = {snappy=2,choppy=2,oddly_breakable_by_hand=3,wool=1},
    })

PostPosted: Fri Apr 26, 2013 16:30
by ShadowNinja
If you are using the latest version of common(as of a few seconds ago) you can set "disable_fire = true" in your minetest.conf.
That will cause the fire to simply burn out without destroying anything.
Otherwise you should delete games/common/mods/fire and remove ", fire" from the list of common mods in your game(probably minetest_game), you can find that in games/minetest_game/game.conf.

PostPosted: Fri Apr 26, 2013 19:33
by Likwid H-Craft
And this is why you don't play with fire...

PostPosted: Fri Apr 26, 2013 19:33
by Inocudom
Shadow wrote:If you are using the latest version of common(as of a few seconds ago) you can set "disable_fire = true" in your minetest.conf.
That will cause the fire to simply burn out without destroying anything.
Otherwise you should delete games/common/mods/fire and remove ", fire" from the list of common mods in your game(probably minetest_game), you can find that in games/minetest_game/game.conf.


I always did want an option that turned off the ability of fires to destroy nodes.