Page 1 of 1

can't make gunpowder

PostPosted: Fri Sep 12, 2014 15:36
by Athanasius
Recently I set up my own server. It works great, but when I put a lump of coal and some gravel in the crafting grid, nothing happens. I do not get this problem when playing single player. Could it be a problem with the server? Any suggestions?

Re: can't make gunpowder

PostPosted: Fri Sep 12, 2014 16:00
by sfan5
TNT is disabled for multiplayer by default.
Add enable_tnt = 1 to minetest.conf to enable it.

Re: can't make gunpowder

PostPosted: Sun Sep 14, 2014 07:49
by Athanasius
Ah, thanks very much.

Re: can't make gunpowder

PostPosted: Sun Sep 14, 2014 08:00
by Athanasius
hmmm didn't seem to work. the minetest.conf file is supposed to be in the minetest main folder, right? Also, I didn't see an option for enable_tnt, commented out, so I added it myself. Was that the correct name of the parameter?

Re: can't make gunpowder

PostPosted: Sun Sep 14, 2014 08:09
by Krock
Athanasius wrote:hmmm didn't seem to work. the minetest.conf file is supposed to be in the minetest main folder, right? Also, I didn't see an option for enable_tnt, commented out, so I added it myself. Was that the correct name of the parameter?

Yes, in the main folder.

There's no documentation in minetest.conf.example because it's a (sub)-game specific setting.
So, simply add this line to your minetest.conf and test it afterwards.
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
enable_tnt = 1

You also can add and change those settings with the ingame command
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
/set -n enable_tnt 1

Re: can't make gunpowder

PostPosted: Tue Sep 16, 2014 08:46
by Athanasius
Krock wrote:Yes, in the main folder.

There's no documentation in minetest.conf.example because it's a (sub)-game specific setting.
So, simply add this line to your minetest.conf and test it afterwards.
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
enable_tnt = 1

You also can add and change those settings with the ingame command
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
/set -n enable_tnt 1


Thank you! The in-game command worked.