diff options
Diffstat (limited to 'src/emoteshortcut.cpp')
-rw-r--r-- | src/emoteshortcut.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emoteshortcut.cpp b/src/emoteshortcut.cpp index 30f3ee4ac..f0f554d37 100644 --- a/src/emoteshortcut.cpp +++ b/src/emoteshortcut.cpp @@ -72,12 +72,12 @@ void EmoteShortcut::save() const void EmoteShortcut::useEmote(const int index) const { - if (!player_node) + if (!localPlayer) return; if (index > 0 && index <= SHORTCUT_EMOTES) { if (mEmotes[index - 1] > 0) - player_node->emote(mEmotes[index - 1]); + localPlayer->emote(mEmotes[index - 1]); } } |