Hello, dear community!
Since I've read lollo_9_1's topic ( [Only registered and activated users can see links. Click Here To Register...] ) about fixing the client version checking bug, I've thought that it would be useful that a fix for the source code would exist, since this is now used as a security measure.
Simply open the Srcs\Server\game\src\config.cpp file, go to line 1288,
and change this code:
with this code:
That's all! Happy compiling! :)
Since I've read lollo_9_1's topic ( [Only registered and activated users can see links. Click Here To Register...] ) about fixing the client version checking bug, I've thought that it would be useful that a fix for the source code would exist, since this is now used as a security measure.
Simply open the Srcs\Server\game\src\config.cpp file, go to line 1288,
and change this code:
Code:
if (version > date)
Code:
if (version != date)