Increase TNT drop rate to 100%

This makes the TNT drop rate match Minecraft 1.14.
master
Nils Dagsson Moskopp 2022-04-17 18:44:09 +02:00
parent 5acc9191fa
commit 6e11819b79
No known key found for this signature in database
GPG Key ID: A3BC671C35191080
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
local S = minetest.get_translator("mcl_tnt")
local tnt_drop_rate = tonumber(minetest.settings:get("mcl_tnt_drop_rate") or 0.25)
local tnt_drop_rate = tonumber(minetest.settings:get("mcl_tnt_drop_rate") or 1.0)
local tnt_griefing = minetest.settings:get_bool("mcl_tnt_griefing", true)
local mod_death_messages = minetest.get_modpath("mcl_death_messages")

View File

@ -25,7 +25,7 @@ mcl_doWeatherCycle (Change weather) bool true
mcl_doTileDrops (Blocks have drops) bool true
# Chance of a node destroyed by a TNT explosion to be dropped as an item
mcl_tnt_drop_rate (TNT drop rate) float 0.25 0.0 1.0
mcl_tnt_drop_rate (TNT drop rate) float 1.0 0.0 1.0
# If enabled, TNT explosions destroy blocks.
mcl_tnt_griefing (TNT destroys blocks) bool true