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 1363af5..ccfea66 100644 --- a/source/game/StarPlayer.cpp +++ b/source/game/StarPlayer.cpp @@ -2013,6 +2013,10 @@ void Player::setPersonality(Personality const& personality) { m_humanoid->setIdentity(m_identity); } +HumanoidPtr Player::humanoid() { + return m_humanoid; +} + List<String> Player::pullQueuedMessages() { return take(m_queuedMessages); } |