Skip to content

Commit c2db513

Browse files
committed
Disable Discord connection audit by default
1 parent 168f845 commit c2db513

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

AssettoServer/Server/Configuration/Extra/ACExtraConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ public static ACExtraConfiguration FromFile(string path)
168168
"setcspweather",
169169
"setrain"
170170
]
171-
}
171+
}
172172
],
173173
AiParams = new AiParams
174174
{

DiscordAuditPlugin/DiscordConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ public class DiscordConfiguration
1919
[YamlMember(Description = "Optional list of SteamIDs whose chat messages should not be forwarded to Discord")]
2020
public List<ulong>? ChatIgnoreGuids { get; init; } = [];
2121
[YamlMember(Description = "Set this to true if player connect and disconnect should be audited")]
22-
public bool EnableConnectionAudit { get; init; } = true;
22+
public bool EnableConnectionAudit { get; init; } = false;
2323
}

0 commit comments

Comments
 (0)