mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-14 23:21:07 +01:00
Fix for VoxeLibre
This commit is contained in:
parent
3954acdfb7
commit
88c3c4558b
1 changed files with 8 additions and 6 deletions
|
@ -847,13 +847,15 @@ end)
|
||||||
-- This is necessary because get_player_window_information may return nil in
|
-- This is necessary because get_player_window_information may return nil in
|
||||||
-- on_joinplayer.
|
-- on_joinplayer.
|
||||||
-- (Also, Minetest plans to add support for toggling touchscreen mode in-game.)
|
-- (Also, Minetest plans to add support for toggling touchscreen mode in-game.)
|
||||||
mcl_player.register_globalstep_slow(function(player)
|
minetest.register_globalstep(function(dtime)
|
||||||
local name = player:get_player_name()
|
for _, player in pairs(minetest.get_connected_players()) do
|
||||||
|
local name = player:get_player_name()
|
||||||
|
|
||||||
if minetest.is_creative_enabled(name) then
|
if minetest.is_creative_enabled(name) then
|
||||||
local touch_enabled = is_touch_enabled(name)
|
local touch_enabled = is_touch_enabled(name)
|
||||||
if touch_enabled ~= players[name].last_touch_enabled then
|
if touch_enabled ~= players[name].last_touch_enabled then
|
||||||
mcl_inventory.set_creative_formspec(player)
|
mcl_inventory.set_creative_formspec(player)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
|
|
Loading…
Reference in a new issue