Use get_modpath() to check for mod existence

This commit is contained in:
ShadowNinja 2014-12-12 16:36:57 -05:00
parent 3a3da7359c
commit c4335aa3dc
1 changed files with 18 additions and 18 deletions

View File

@ -12,7 +12,7 @@ it at the beginning of your source file(s):
-- Boilerplate to support localized strings if intllib mod is installed.
local S
if intllib then
if minetest.get_modpath("intllib") then
S = intllib.Getter()
else
S = function(s) return s end