Remove unnecessary CSM warning (#8485)

master
Paramat 2019-04-28 00:44:26 +01:00 committed by GitHub
parent b839a6dd54
commit ad8d68c06a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 7 deletions

View File

@ -121,15 +121,10 @@ Client::Client(
void Client::loadMods()
{
// Don't load mods twice
if (m_mods_loaded) {
return;
}
// Don't load mods twice.
// If client scripting is disabled by the client, don't load builtin or
// client-provided mods.
if (!m_modding_enabled) {
warningstream << "Client side scripting is disabled by client." << std::endl;
if (m_mods_loaded || !m_modding_enabled) {
return;
}