Update Sons Of The Forest (#407)
This adds a new setting that allows users to bypass the port checking. It also adds filtering for a benign error.
This commit is contained in:
parent
5971d1851a
commit
b1f2e52c7a
@ -72,7 +72,7 @@ App.ApplicationReadyMode=RegexMatch
|
|||||||
App.TemplateMatchRegex={{(\$?[\w]+)}}
|
App.TemplateMatchRegex={{(\$?[\w]+)}}
|
||||||
Console.FilterMatchRegex=
|
Console.FilterMatchRegex=
|
||||||
Console.FilterMatchReplacement=
|
Console.FilterMatchReplacement=
|
||||||
Console.ThrowawayMessageRegex=^(WARNING|ERROR): Shader.+|Couldn't create a Convex Mesh from source mesh.*|No mesh data available for mesh.*|ALSA lib.*$
|
Console.ThrowawayMessageRegex=^(WARNING|ERROR): Shader.+|Couldn't create a Convex Mesh from source mesh.*|No mesh data available for mesh.*|ALSA lib.*|\[FMOD\] Error \(ERR_INVALID_HANDLE\): An invalid object handle was used\.$
|
||||||
Console.AppReadyRegex=^Game Activation Sequence step 7 : End of Sequence|\[Self-Tests\] Please restart the server.$
|
Console.AppReadyRegex=^Game Activation Sequence step 7 : End of Sequence|\[Self-Tests\] Please restart the server.$
|
||||||
Console.UserJoinRegex=^ValidateAuthTicketResponse success for (?<userid>.+?)$
|
Console.UserJoinRegex=^ValidateAuthTicketResponse success for (?<userid>.+?)$
|
||||||
Console.UserLeaveRegex=^Unregistering client 2 with steam id (?<userid>.+?)$
|
Console.UserLeaveRegex=^Unregistering client 2 with steam id (?<userid>.+?)$
|
||||||
|
@ -253,6 +253,22 @@
|
|||||||
"False": "false"
|
"False": "false"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"DisplayName": "Skip Network Accessibility Test",
|
||||||
|
"Category": "SotF - Server Settings",
|
||||||
|
"Description": "Skips a port test that can cause the server to fail to start. This test can be a sign of incorrect port forwarding, but sometimes has false positives.",
|
||||||
|
"Keywords": "skip,network,accessibility,test",
|
||||||
|
"FieldName": "SkipNetworkAccessibilityTest",
|
||||||
|
"InputType": "checkbox",
|
||||||
|
"IsFlagArgument": false,
|
||||||
|
"ParamFieldName": "$.SkipNetworkAccessibilityTest",
|
||||||
|
"IncludeInCommandLine": false,
|
||||||
|
"DefaultValue": "false",
|
||||||
|
"EnumValues": {
|
||||||
|
"True": "true",
|
||||||
|
"False": "false"
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"DisplayName":"Server Owners",
|
"DisplayName":"Server Owners",
|
||||||
"Category":"SotF - Server Settings",
|
"Category":"SotF - Server Settings",
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
"LogFilesEnabled": false,
|
"LogFilesEnabled": false,
|
||||||
"TimestampLogFilenames": true,
|
"TimestampLogFilenames": true,
|
||||||
"TimestampLogEntries": true,
|
"TimestampLogEntries": true,
|
||||||
|
"SkipNetworkAccessibilityTest": false,
|
||||||
"GameSettings": {
|
"GameSettings": {
|
||||||
"Gameplay.TreeRegrowth": true,
|
"Gameplay.TreeRegrowth": true,
|
||||||
"Structure.Damage": true
|
"Structure.Damage": true
|
||||||
|
Loading…
Reference in New Issue
Block a user