mirror of
https://github.com/stujones11/wield3d.git
synced 2024-12-28 08:47:27 +01:00
Fix bug in wield_scale config
This commit is contained in:
parent
ae3f8ec408
commit
7fd5eb5818
2
init.lua
2
init.lua
@ -36,7 +36,7 @@ local wield_scale = minetest.settings:get("wield3d_scale")
|
|||||||
|
|
||||||
update_time = update_time and tonumber(update_time) or 1
|
update_time = update_time and tonumber(update_time) or 1
|
||||||
verify_time = verify_time and tonumber(verify_time) or 10
|
verify_time = verify_time and tonumber(verify_time) or 10
|
||||||
wield_scale = verify_time and tonumber(wield_scale) or 0.25 -- default scale
|
wield_scale = wield_scale and tonumber(wield_scale) or 0.25 -- default scale
|
||||||
|
|
||||||
local location = {
|
local location = {
|
||||||
"Arm_Right", -- default bone
|
"Arm_Right", -- default bone
|
||||||
|
Loading…
Reference in New Issue
Block a user