diff options
Diffstat (limited to 'source/game/StarPlayer.cpp')
-rw-r--r-- | source/game/StarPlayer.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source/game/StarPlayer.cpp b/source/game/StarPlayer.cpp index 94ed991..9c9c482 100644 --- a/source/game/StarPlayer.cpp +++ b/source/game/StarPlayer.cpp @@ -2202,6 +2202,10 @@ pair<HumanoidEmote, float> Player::currentEmote() const { return make_pair(m_emoteState, m_emoteCooldownTimer); } +Player::State Player::currentState() const { + return m_state; +} + List<ChatAction> Player::pullPendingChatActions() { return take(m_pendingChatActions); } |