improve warnin message

This commit is contained in:
unknown 2022-02-06 11:59:31 -05:00
parent 7dfea8748a
commit 19c690d7e9
1 changed files with 8 additions and 1 deletions

View File

@ -7,7 +7,14 @@ if not sound_api then
local metatable = {
__index = function(_, _)
return function(input)
minetest.log("warning", "[basic_materials]: sounds not found")
minetest.log(
"warning",
"[basic_materials]: " ..
"The sound api submodule for game agnostic sound loading could not be found at " ..
basic_materials.modpath .. "/sound_api_core. " ..
"documentation for using submodules can be found at https://git-scm.com/docs/git-submodule." ..
"defaulting back to mod provided input or nil."
)
if input then return input else return nil end
end
end,