Fix Risk of Rain 2

The devs broke the log. It no longer shows player join/leave properly. It just has ??? for most values. This can't be fixed, but the join regex can be. They added a space before the line previously, now they added one after the line. I'm adding buffers to each line as a failsafe.
This commit is contained in:
James Manker 2022-03-15 22:44:39 -05:00
parent d3226158a2
commit 0865cec4d9

View File

@ -2,6 +2,7 @@ App.AdminMethod=STDIO
App.ApplicationPort1=27015 App.ApplicationPort1=27015
App.ApplicationPort2=27016 App.ApplicationPort2=27016
App.ApplicationPort3=27017 App.ApplicationPort3=27017
App.RemoteAdminPort=0
App.ApplicationReadyMode=RegexMatch App.ApplicationReadyMode=RegexMatch
App.BaseDirectory=./risk-of-rain-2/1180760/ App.BaseDirectory=./risk-of-rain-2/1180760/
App.CommandLineArgs={{$PlatformArgs}} App.CommandLineArgs={{$PlatformArgs}}
@ -28,10 +29,10 @@ App.UniversalSleepApplicationUDPPort=1
App.UniversalSleepSteamQueryPort=2 App.UniversalSleepSteamQueryPort=2
App.WakeupMode=Any App.WakeupMode=Any
Console.ThrowawayMessageRegex=^((WARNING|ERROR): Shader.+)|((Filename:.*))$ Console.ThrowawayMessageRegex=^((WARNING|ERROR): Shader.+)|((Filename:.*))$
Console.AppReadyRegex=^.*Press Enter to chat.$ Console.AppReadyRegex=^.*Press Enter to chat.*$
Console.UserJoinRegex=^.*GameNetworkManager.AddPlayerInternal.*$ Console.UserJoinRegex=^.*GameNetworkManager.AddPlayerInternal.*$
Console.UserLeaveRegex=^(.*Log: connection .* has been disconnected by timeout.*)|(.*Kicking client on connection.*)$ Console.UserLeaveRegex=^.*(.*Log: connection .* has been disconnected by timeout.*).*|.*(.*Kicking client on connection.*).*$
Console.UserChatRegex=^\[\d\d:\d\d:\d\d\] \[CHAT\] <(?<username>.+?)> (?<message>.+)$ Console.UserChatRegex=^.*\[\d\d:\d\d:\d\d\] \[CHAT\] <(?<username>.+?)> (?<message>.+)$
Meta.Author=IceOfWraith Meta.Author=IceOfWraith
Meta.ConfigManifest=risk-of-rain-2config.json Meta.ConfigManifest=risk-of-rain-2config.json
Meta.MetaConfigManifest=risk-of-rain-2metaconfig.json Meta.MetaConfigManifest=risk-of-rain-2metaconfig.json