mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2025-06-28 06:11:47 +02:00
Turned all boot messages into clean minetest.log() calls
- Turned all the 'print' calls at server's boot to 'minetest.log' in order to render it more clearly
This commit is contained in:
@ -61,7 +61,7 @@ local default_bookmark = {}
|
||||
local backwardscompatsave = "NO"
|
||||
|
||||
|
||||
print(S("compassgps reading bookmarks"))
|
||||
minetest.log("action", S("compassgps reading bookmarks"))
|
||||
local file = io.open(minetest.get_worldpath().."/bookmarks", "r")
|
||||
if file then
|
||||
bookmarks = minetest.deserialize(file:read("*all"))
|
||||
@ -127,7 +127,7 @@ end --distance3d
|
||||
|
||||
|
||||
-- **********************************************************
|
||||
print(S("compassgps reading settings"))
|
||||
minetest.log("action", S("compassgps reading settings"))
|
||||
if minetest.is_singleplayer() and show_shared_on_singleplayer==false then
|
||||
singleplayer=true
|
||||
else
|
||||
|
Reference in New Issue
Block a user