From ec3b7077cbc7010122d978e61097cd645366c4f0 Mon Sep 17 00:00:00 2001 From: Lemongrass3110 Date: Thu, 20 Dec 2018 17:31:09 +0100 Subject: [PATCH] Switched supported client to Ragexe (#3765) Fixes #3376 This adds support for clients after July 2018. Since no unpacked RagexeRE exist anymore, we need to switch back over to Ragexe. This should work without problems until 2018-11-21. After this there are further changes required. Thanks to @Haikenz --- src/config/packets.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/config/packets.hpp b/src/config/packets.hpp index fcef72730d..02c9687f49 100644 --- a/src/config/packets.hpp +++ b/src/config/packets.hpp @@ -17,8 +17,9 @@ #endif #ifndef PACKETVER_RE - /// From this point on only kRO RE clients are supported - #if PACKETVER > 20151104 + /// From November 2015 only RagexeRE are supported. + /// After July 2018 only Ragexe are supported. + #if PACKETVER > 20151104 && PACKETVER < 20180704 #define PACKETVER_RE #endif #endif