If a log message should be ignored, it shouldn't be an error

master
FaceDeer 2020-01-27 23:43:30 -07:00
parent 972d761e28
commit dd3b5d8074
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ local restore_bell_data = function()
local file, err = io.open(BELL_SAVE_FILE, "rb")
if (err ~= nil) then
minetest.log("error", "[bell] Could not open bell data savefile (ignore this message on first start)")
minetest.log("warning", "[bell] Could not open bell data savefile (ignore this message on first start)")
return
end
local str = file:read()