diff options
-rw-r--r-- | src/emoteshortcut.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/emoteshortcut.cpp b/src/emoteshortcut.cpp index 84643df4e..e60c05cb0 100644 --- a/src/emoteshortcut.cpp +++ b/src/emoteshortcut.cpp @@ -75,7 +75,8 @@ void EmoteShortcut::useEmote(const int index) const if (!localPlayer) return; - if (index > 0 && index <= SHORTCUT_EMOTES) + if (index > 0 && + index <= SHORTCUT_EMOTES) { if (mEmotes[index - 1] > 0) localPlayer->emote(mEmotes[index - 1]); |