1
0
mirror of https://gitlab.com/echoes91/spears.git synced 2025-01-22 13:40:24 +01:00

Added fallback value in minetest.log on line 14

This commit is contained in:
Christian Sirolli 2024-12-11 15:38:21 +00:00
parent 32d0ee567a
commit add5df5214

View File

@ -11,4 +11,4 @@ dofile(minetest.get_modpath("spears").."/functions.lua")
dofile(minetest.get_modpath("spears").."/tools.lua")
minetest.log("action", "[MOD] Spears loaded with throwing speed " .. minetest.settings:get("spears_throw_speed") .. " and drag coeff. " .. minetest.settings:get("spears_drag_coeff"))
minetest.log("action", "[MOD] Spears loaded with throwing speed " .. (minetest.settings:get("spears_throw_speed") or 13) .. " and drag coeff. " .. (minetest.settings:get("spears_drag_coeff") or 0.1))