diff options
author | megamage <none@none> | 2009-08-27 19:57:35 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-08-27 19:57:35 -0500 |
commit | 90b55ff7b15bb243fce40ec733630bc605bf04a9 (patch) | |
tree | b0381baf2443edf45173b1fb9e77c6f6b12f05ff /src/game/World.cpp | |
parent | 82bd15b7beb92d57e3925781581d62425d675398 (diff) |
[8424] Added support for strict chatmessage validation Author: arrai
--HG--
branch : trunk
Diffstat (limited to 'src/game/World.cpp')
-rw-r--r-- | src/game/World.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/game/World.cpp b/src/game/World.cpp index ecc90e2ced0..22cfebf8911 100644 --- a/src/game/World.cpp +++ b/src/game/World.cpp @@ -977,6 +977,8 @@ void World::LoadConfigSettings(bool reload) m_configs[CONFIG_TALENTS_INSPECTING] = sConfig.GetBoolDefault("TalentsInspecting", true); m_configs[CONFIG_CHAT_FAKE_MESSAGE_PREVENTING] = sConfig.GetBoolDefault("ChatFakeMessagePreventing", false); + m_configs[CONFIG_CHAT_STRICT_LINK_CHECKING_SEVERITY] = sConfig.GetIntDefault("ChatStrictLinkChecking.Severity", 0); + m_configs[CONFIG_CHAT_STRICT_LINK_CHECKING_KICK] = sConfig.GetIntDefault("ChatStrictLinkChecking.Kick", 0); m_configs[CONFIG_CORPSE_DECAY_NORMAL] = sConfig.GetIntDefault("Corpse.Decay.NORMAL", 60); m_configs[CONFIG_CORPSE_DECAY_RARE] = sConfig.GetIntDefault("Corpse.Decay.RARE", 300); |