From 5f631e7389cdbca34d7d8dfee329a65fd7490ac7 Mon Sep 17 00:00:00 2001 From: David Markowitz <39972741+EmosewaMC@users.noreply.github.com> Date: Sun, 17 Nov 2024 20:59:38 -0800 Subject: [PATCH] Update dGame/User.h Co-authored-by: jadebenn --- dGame/User.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dGame/User.h b/dGame/User.h index 1f82ce7f..662842a8 100644 --- a/dGame/User.h +++ b/dGame/User.h @@ -25,7 +25,7 @@ public: User& operator=(const User& other); bool operator==(const User& other) const; - uint32_t GetAccountID() const { return m_AccountID; } + uint32_t GetAccountID() const noexcept { return m_AccountID; } std::string& GetUsername() { return m_Username; } std::string& GetSessionKey() { return m_SessionKey; } SystemAddress& GetSystemAddress() { return m_SystemAddress; }