diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-06-28 01:34:37 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-06-28 01:34:37 +1000 |
commit | 4c006afc94e4994f215eddaa35ee22358d963019 (patch) | |
tree | 3a87957beccc6f24ada1d76fb5969090ff883ca5 /source/game/StarPlayer.cpp | |
parent | 59ab7dabe6b24fe998764f23d0da15aa7d4af3f9 (diff) |
Add unused support for using the actual humanoid for armor preview
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); } |