AzerothCore 3.3.5a
OpenSource WoW Emulator
Loading...
Searching...
No Matches
Warden.cpp File Reference
#include "Warden.h"
#include "AccountMgr.h"
#include "BanMgr.h"
#include "ByteBuffer.h"
#include "CryptoHash.h"
#include "Log.h"
#include "Opcodes.h"
#include "Player.h"
#include "SharedDefines.h"
#include "World.h"
#include "WorldPacket.h"
#include "WorldSession.h"

Go to the source code of this file.

Classes

struct  keyData
 

Functions

static std::string GetWardenActionStr (uint32 action)
 

Function Documentation

◆ GetWardenActionStr()

static std::string GetWardenActionStr ( uint32  action)
static
182{
183 switch (action)
184 {
186 return "WARDEN_ACTION_LOG";
188 return "WARDEN_ACTION_KICK";
190 return "WARDEN_ACTION_BAN";
191 }
192
193 return "UNHANDLED ACTION";
194}
@ WARDEN_ACTION_KICK
Definition: WardenCheckMgr.h:28
@ WARDEN_ACTION_BAN
Definition: WardenCheckMgr.h:29
@ WARDEN_ACTION_LOG
Definition: WardenCheckMgr.h:27

References WARDEN_ACTION_BAN, WARDEN_ACTION_KICK, and WARDEN_ACTION_LOG.

Referenced by Warden::ApplyPenalty().