diff options
author | Andrei Karas <akaras@inbox.ru> | 2019-06-02 23:55:57 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-06-02 23:55:57 +0300 |
commit | 9e8a5d4e52721f09bf7e1653bfba7f03e7403061 (patch) | |
tree | 8fe4b150facea0710c7bbb941f96dc154b293fbe /src/common | |
parent | 20b1d37e3bdfd465543e91dde0519201a3e1b0fc (diff) | |
download | hercules-9e8a5d4e52721f09bf7e1653bfba7f03e7403061.tar.gz hercules-9e8a5d4e52721f09bf7e1653bfba7f03e7403061.tar.bz2 hercules-9e8a5d4e52721f09bf7e1653bfba7f03e7403061.tar.xz hercules-9e8a5d4e52721f09bf7e1653bfba7f03e7403061.zip |
Disable new shortcuts on zero clients
Because on zero they still not implimented.
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/mmo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/mmo.h b/src/common/mmo.h index 545d180fd..b58a70ae9 100644 --- a/src/common/mmo.h +++ b/src/common/mmo.h @@ -139,7 +139,7 @@ // Note that newer clients no longer save hotkeys in the registry! #define HOTKEY_SAVING -#if PACKETVER_MAIN_NUM >= 20190522 || PACKETVER_RE_NUM >= 20190508 || PACKETVER_ZERO_NUM >= 20190515 +#if PACKETVER_MAIN_NUM >= 20190522 || PACKETVER_RE_NUM >= 20190508 #define MAX_HOTKEYS 38 #elif PACKETVER_MAIN_NUM >= 20141022 || PACKETVER_RE_NUM >= 20141015 || defined(PACKETVER_ZERO) // (38 = 9 skills x 4 bars & 2 Quickslots)(0x07d9,268) @@ -156,7 +156,7 @@ #endif #endif // PACKETVER_MAIN_NUM >= 20070711 || PACKETVER_RE_NUM >= 20080827 || PACKETVER_AD_NUM >= 20070711 || PACKETVER_SAK_NUM >= 20070628 || defined(PACKETVER_ZERO) -#if PACKETVER_MAIN_NUM >= 20190522 || PACKETVER_RE_NUM >= 20190508 || PACKETVER_ZERO_NUM >= 20190515 +#if PACKETVER_MAIN_NUM >= 20190522 || PACKETVER_RE_NUM >= 20190508 #define MAX_HOTKEYS_DB ((MAX_HOTKEYS) * 2) #else #define MAX_HOTKEYS_DB MAX_HOTKEYS |