diff --git a/app/services/webapp/api/gmod-error-handler.ts b/app/services/webapp/api/gmod-error-handler.ts index 7780e1fd..9e300440 100644 --- a/app/services/webapp/api/gmod-error-handler.ts +++ b/app/services/webapp/api/gmod-error-handler.ts @@ -42,7 +42,7 @@ type StackMatchGroups = { }; const megaRex = - /(?\d+)\. (?\S+) - (?RunString|LuaCmd|LUACMD)?(\[(?STEAM_\d:\d:\d+)\](?.+))?(<(?\d:\d:\d+)\|(?.+?)>)?(<(?[^:]+)>)?(<(?.+):(?.+)>)?(?\[C\]:-1)?(?(?(?:lua|gamemodes)\/(?[-_.A-Za-z0-9]+?)(?:\/.*)?\/(?[-_.A-Za-z0-9]+)\.(?lua)):(?\d+))?/g; + /(?\d+)\. (?\S+) - (?RunString|LuaCmd|LUACMD)?(\[(?STEAM_\d:\d:\d+)\](?.+))?(<(?\d:\d:\d+)\|(?.+?)>)?(<(?[^:]+)>)?(<(?.+):(?.+)>)?(?\[C\])?(?(?(?:lua|gamemodes)\/(?[-_.A-Za-z0-9]+?)(?:\/.*)?\/(?[-_.A-Za-z0-9]+)\.(?lua))?:(?-?\d+))/g; const SuperReplacer = (_: string, ...args: any[]) => { const groups = args.at(-1) as StackMatchGroups;