diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/map/clif.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/map/clif.h b/src/map/clif.h index ee75f1a94..d9672d624 100644 --- a/src/map/clif.h +++ b/src/map/clif.h @@ -42,6 +42,15 @@ struct quest; #ifndef PACKETVER #define PACKETVER 20071106 #endif +// backward compatible PACKETVER 8 and 9 +#if PACKETVER == 8 +#undef PACKETVER +#define PACKETVER 20070521 +#endif +#if PACKETVER == 9 +#undef PACKETVER +#define PACKETVER 20071106 +#endif // packet DB #define MAX_PACKET_DB 0x300 |