1
0
mirror of https://gitlab.com/echoes91/spears.git synced 2025-02-02 02:20:17 +01:00

Merge branch 'master' into 'master'

Added fallback value in minetest.log

Closes #8

See merge request echoes91/spears!5
This commit is contained in:
Echoes 2024-12-22 10:14:10 +00:00
commit bd4215e68d

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))