chore: remove uneeded old perm map check (#1240)

and remove unused softban perm
RIP DLU beta
This commit is contained in:
Aaron Kimbrell
2023-10-25 11:44:57 -05:00
committed by GitHub
parent a5e46e2844
commit 6f3950dae7
2 changed files with 0 additions and 23 deletions

View File

@@ -27,20 +27,6 @@ enum class ePermissionMap : uint64_t {
* The character has restricted chat access, bit 6.
*/
RestrictedChatAccess = 0x1 << 6,
//
// Combined permissions
//
/**
* The character is marked as 'old', restricted from trade and mail.
*/
Old = RestrictedTradeAccess | RestrictedMailAccess,
/**
* The character is soft banned, restricted from trade, mail, and chat.
*/
SoftBanned = RestrictedTradeAccess | RestrictedMailAccess | RestrictedChatAccess,
};
#endif //!__EPERMISSIONMAP__H__