mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-02-13 23:43:44 +00:00
feat(Core): implement world availability option (#8755)
This commit is contained in:
@@ -3597,6 +3597,19 @@ enum ServerProcessTypes
|
||||
NUM_SERVER_PROCESS_TYPES
|
||||
};
|
||||
|
||||
// Login Failure Reasons
|
||||
enum class LoginFailureReason : uint8
|
||||
{
|
||||
Failed = 0,
|
||||
NoWorld = 1,
|
||||
DuplicateCharacter = 2,
|
||||
NoInstances = 3,
|
||||
Disabled = 4,
|
||||
NoCharacter = 5,
|
||||
LockedForTransfer = 6,
|
||||
LockedByBilling = 7
|
||||
};
|
||||
|
||||
namespace Acore::Impl
|
||||
{
|
||||
struct AC_SHARED_API CurrentServerProcessHolder
|
||||
|
||||
Reference in New Issue
Block a user