mirror of
https://github.com/minetest-mods/hbsprint.git
synced 2024-12-22 21:32:24 +01:00
Bug causing monoids not to be used removed
This commit is contained in:
parent
130b3cdd65
commit
52c30b2629
6
init.lua
6
init.lua
@ -20,9 +20,9 @@ local sprinting = false
|
||||
if dir == nil then dir = true end
|
||||
if stamina ~= false then stamina = true end
|
||||
if starve == nil then starve = true end
|
||||
if not minetest.get_modpath("hudbars") then hudbars = false end
|
||||
if not minetest.get_modpath("hbhunger") then starve = false end
|
||||
if not minetest.get_modpath("player_monoids") then monoids = false end
|
||||
if minetest.get_modpath("hudbars") ~= nil then hudbars = true end
|
||||
if minetest.get_modpath("hbhunger") ~= nil then starve = true end
|
||||
if minetest.get_modpath("player_monoids") ~= nil then monoids = true end
|
||||
|
||||
-- Functions
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user