Browse Source

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
Lemongrass3110 6 years ago
parent
commit
ec3b7077cb
1 changed files with 3 additions and 2 deletions
  1. 3 2
      src/config/packets.hpp

+ 3 - 2
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