diff --git a/src/scriptapi.cpp b/src/scriptapi.cpp index a88d6be5..c759683e 100644 --- a/src/scriptapi.cpp +++ b/src/scriptapi.cpp @@ -164,7 +164,7 @@ void check_modname_prefix(lua_State *L, std::string &name) "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_")) throw LuaError(L, std::string("Name \"")+name +"\" does not follow naming conventions: " - +"\"contains unallowed characters)"); + +"\"contains unallowed characters"); } static v3f readFloatPos(lua_State *L, int index) @@ -2672,6 +2672,14 @@ bool scriptapi_loadmod(lua_State *L, const std::string &scriptpath, { ModNameStorer modnamestorer(L, modname); + if(!string_allowed(modname, "abcdefghijklmnopqrstuvwxyz" + "0123456789_")){ + errorstream<<"Error loading mod \""<