Skip to content

Commit

Permalink
Fix CAX authing
Browse files Browse the repository at this point in the history
The CAX module expects the game description to start with "CW: ", and won't auth the server if this is not the case.
  • Loading branch information
VortixDev authored Dec 20, 2019
1 parent 4bd0581 commit c069f3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion upload/garrysmod/gamemodes/clockwork/framework/sh_boot.lua
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ end;
--]]
function Clockwork:GetGameDescription()
local schemaName = self.kernel:GetSchemaGamemodeName();
return "Clockwork: "..schemaName;
return "CW: "..schemaName;
end;

AddCSLuaFile("cl_kernel.lua");
Expand Down

0 comments on commit c069f3b

Please sign in to comment.