summaryrefslogtreecommitdiff
path: root/src/client.cpp
diff options
context:
space:
mode:
authorSmallJoker <SmallJoker@users.noreply.github.com>2017-05-19 07:45:47 +0200
committerLoïc Blot <nerzhul@users.noreply.github.com>2017-05-19 07:45:47 +0200
commit674400523e10624ae8320b0d18a05dbfd6dcac42 (patch)
tree952662707e04d276ee8b68dc30c81f29c7519d4c /src/client.cpp
parente25a38e3fbb156ae2bc72cc66aef014ae3963407 (diff)
downloadminetest-674400523e10624ae8320b0d18a05dbfd6dcac42.tar.gz
minetest-674400523e10624ae8320b0d18a05dbfd6dcac42.tar.bz2
minetest-674400523e10624ae8320b0d18a05dbfd6dcac42.zip
Mainmenu: Fix issues while trying to enable all mods (#5770)
Diffstat (limited to 'src/client.cpp')
-rw-r--r--src/client.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client.cpp b/src/client.cpp
index 6ab4002a5..5f2d2d9d2 100644
--- a/src/client.cpp
+++ b/src/client.cpp
@@ -171,7 +171,7 @@ void Client::initMods()
if (!string_allowed(mod.name, MODNAME_ALLOWED_CHARS)) {
throw ModError("Error loading mod \"" + mod.name +
"\": Mod name does not follow naming conventions: "
- "Only chararacters [a-z0-9_] are allowed.");
+ "Only characters [a-z0-9_] are allowed.");
}
std::string script_path = mod.path + DIR_DELIM + "init.lua";
infostream << " [" << padStringRight(mod.name, 12) << "] [\""