diff options
Diffstat (limited to 'src/localplayer.h')
-rw-r--r-- | src/localplayer.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/localplayer.h b/src/localplayer.h index 43a1fe6d..0013a471 100644 --- a/src/localplayer.h +++ b/src/localplayer.h @@ -249,9 +249,8 @@ class LocalPlayer final : public Being int mWalkingDir = 0; /**< The direction the player is walking in. */ bool mPathSetByMouse = false; /**< Tells if the path was set using mouse */ - using MessagePair = std::pair<std::string, int>; /** Queued messages*/ - std::list<MessagePair> mMessages; + std::list<std::pair<std::string, int>> mMessages; int mMessageTime = 0; bool mShowIp = false; |