diff options
author | Fedja Beader <fedja@protonmail.ch> | 2025-04-03 22:42:02 +0000 |
---|---|---|
committer | Fedja Beader <fedja@protonmail.ch> | 2025-04-03 22:42:02 +0000 |
commit | bb01aea375047f23b5ddc4f481b611dff39003b2 (patch) | |
tree | cb3a3632d16ec7add09729a91f86a4b5cc2812ef | |
parent | 143f469d4a5b0a683402f05c143e71438f769dc9 (diff) | |
download | manaplus-bb01aea375047f23b5ddc4f481b611dff39003b2.tar.gz manaplus-bb01aea375047f23b5ddc4f481b611dff39003b2.tar.bz2 manaplus-bb01aea375047f23b5ddc4f481b611dff39003b2.tar.xz manaplus-bb01aea375047f23b5ddc4f481b611dff39003b2.zip |
Typofix unused function OnlinePlayer::getStatus()
****
mana/plus!153
-rw-r--r-- | src/gui/onlineplayer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/onlineplayer.h b/src/gui/onlineplayer.h index 64ab76abd..b38960c56 100644 --- a/src/gui/onlineplayer.h +++ b/src/gui/onlineplayer.h @@ -54,7 +54,7 @@ class OnlinePlayer final const std::string getNick() const noexcept2 A_WARN_UNUSED { return mNick; } - unsigned char getStaus() const noexcept2 A_WARN_UNUSED + unsigned char getStatus() const noexcept2 A_WARN_UNUSED { return mStatus; } void setIsGM(const bool b) |