1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

[CSM] Fix minimap problems (#5405)

This fixes issue #5404
This commit is contained in:
Loïc Blot 2017-03-17 07:54:49 +01:00 committed by GitHub
parent 0891975ad6
commit 7b74f04a61
5 changed files with 18 additions and 17 deletions

View file

@ -49,8 +49,8 @@ core.register_chatcommand("test_node", {
local function preview_minimap()
local minimap = core.ui.minimap
minimap:show()
minimap:set_mode(4)
minimap:show()
minimap:set_pos({x=5, y=50, z=5})
minimap:toggle_shape()
@ -61,9 +61,13 @@ end
core.after(2, function()
print("[PREVIEW] loaded " .. modname .. " mod")
preview_minimap()
modstorage:set_string("current_mod", modname)
print(modstorage:get_string("current_mod"))
preview_minimap()
end)
core.after(5, function()
core.ui.minimap:show()
print("[PREVIEW] Day count: " .. core.get_day_count() ..
" time of day " .. core.get_timeofday())