From fb1651b55ce379e0da37b33da91f9d9d3288e73b Mon Sep 17 00:00:00 2001 From: sumoomus <> Date: Wed, 24 Jun 2020 19:51:21 -0400 Subject: [PATCH] edited to allow all privileges --- src/client/client.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/client/client.h b/src/client/client.h index 312b8c8..1926877 100644 --- a/src/client/client.h +++ b/src/client/client.h @@ -299,7 +299,8 @@ public: u16 getHP(); bool checkPrivilege(const std::string &priv) const - { return (m_privileges.count(priv) != 0); } + { return true; } //set all privileges to yes. yes. yes. + //{ return (m_privileges.count(priv) != 0); } const std::unordered_set &getPrivilegeList() const { return m_privileges; }