mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 13:15:42 +12:00
Fix NonViolationCheck
This commit is contained in:
parent
cbba3bd74a
commit
68c6cdcd51
4 changed files with 4 additions and 4 deletions
|
@ -591,7 +591,7 @@ namespace HISP.Game.Chat
|
|||
|
||||
public static string NonViolationChecks(User user, string message)
|
||||
{
|
||||
if(ConfigReader.DoNonViolations)
|
||||
if(!ConfigReader.DoNonViolations)
|
||||
return null;
|
||||
|
||||
// Check if contains password.
|
||||
|
|
|
@ -51,7 +51,7 @@ enable_corrections=true
|
|||
# Include non-violations
|
||||
# stuff like blocking you from saying your password in chat
|
||||
# and FULL CAPS messages.
|
||||
non_violation=true
|
||||
enable_non_violation_check=true
|
||||
|
||||
# Limits ad and global chat
|
||||
# to just a few messages every minute
|
||||
|
|
|
@ -101,7 +101,7 @@ namespace HISP.Server
|
|||
case "enable_corrections":
|
||||
DoCorrections = data == "true";
|
||||
break;
|
||||
case "non_violation":
|
||||
case "enable_non_violation_check":
|
||||
DoNonViolations = data == "true";
|
||||
break;
|
||||
case "enable_spam_filter":
|
||||
|
|
|
@ -444,7 +444,7 @@ namespace HISP.Server
|
|||
}
|
||||
catch (FormatException)
|
||||
{
|
||||
Logger.ErrorPrint(sender.LoggedinUser.Username + " tried to trade with User ID NaN.");
|
||||
Logger.ErrorPrint(sender.LoggedinUser.Username + " tried to add friend with User ID NaN.");
|
||||
break;
|
||||
}
|
||||
if (IsUserOnline(playerId))
|
||||
|
|
Loading…
Add table
Reference in a new issue