From b8c18c1ee6baee4733b1b6acecdb3cf4ad513bbf Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Fri, 26 Jan 2018 22:23:08 +0000 Subject: [PATCH] Use warning for TSM chests success instead of print --- mods/tsm_chests/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/tsm_chests/init.lua b/mods/tsm_chests/init.lua index 25c7903..f49dd98 100755 --- a/mods/tsm_chests/init.lua +++ b/mods/tsm_chests/init.lua @@ -213,5 +213,5 @@ function place_chests(minp, maxp, seed, number_chests) end end - print("Spawned " .. chests_placed .. "/" .. number_chests .. " chests after " .. attempts .. " attempts!") + minetest.log("warning", "Spawned " .. chests_placed .. "/" .. number_chests .. " chests after " .. attempts .. " attempts!") end