mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-19 17:05:44 +01:00
Core/Misc: Compile warning fix
This commit is contained in:
@@ -1412,12 +1412,12 @@ struct OpcodeHandler
|
||||
{
|
||||
OpcodeHandler() {}
|
||||
OpcodeHandler(char const* _name, SessionStatus _status, PacketProcessing _processing, pOpcodeHandler _handler)
|
||||
: Name(_name), Status(_status), ProcessingPlace(_processing), Handler(_handler) {}
|
||||
: Handler(_handler), Name(_name), Status(_status), ProcessingPlace(_processing) {}
|
||||
|
||||
pOpcodeHandler Handler;
|
||||
char const* Name;
|
||||
SessionStatus Status;
|
||||
PacketProcessing ProcessingPlace;
|
||||
pOpcodeHandler Handler;
|
||||
};
|
||||
|
||||
class OpcodeTable
|
||||
|
||||
Reference in New Issue
Block a user