mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-01 00:27:44 +00:00
Fix indent
This commit is contained in:
parent
81025faf7e
commit
cf1365a5d0
1 changed files with 2 additions and 3 deletions
|
@ -40,7 +40,6 @@ extern Core::ServerZone g_serverZone;
|
||||||
// instanciate and initialize commands
|
// instanciate and initialize commands
|
||||||
Core::DebugCommandHandler::DebugCommandHandler()
|
Core::DebugCommandHandler::DebugCommandHandler()
|
||||||
{
|
{
|
||||||
|
|
||||||
// Push all commands onto the register map ( command name - function - description - required GM level )
|
// Push all commands onto the register map ( command name - function - description - required GM level )
|
||||||
registerCommand( "set", &DebugCommandHandler::set, "Loads and injects a premade Packet.", 1 );
|
registerCommand( "set", &DebugCommandHandler::set, "Loads and injects a premade Packet.", 1 );
|
||||||
registerCommand( "get", &DebugCommandHandler::get, "Loads and injects a premade Packet.", 1 );
|
registerCommand( "get", &DebugCommandHandler::get, "Loads and injects a premade Packet.", 1 );
|
||||||
|
@ -213,8 +212,8 @@ void Core::DebugCommandHandler::set( char * data, Core::Entity::PlayerPtr pPlaye
|
||||||
|
|
||||||
else if( ( subCommand == "unlockaetheryte" ) && ( params != "" ) )
|
else if( ( subCommand == "unlockaetheryte" ) && ( params != "" ) )
|
||||||
{
|
{
|
||||||
for( uint8_t i = 0; i < 255; i++ )
|
for( uint8_t i = 0; i < 255; i++ )
|
||||||
pPlayer->registerAetheryte( i );
|
pPlayer->registerAetheryte( i );
|
||||||
}
|
}
|
||||||
|
|
||||||
else if( ( subCommand == "discovery" ) && ( params != "" ) )
|
else if( ( subCommand == "discovery" ) && ( params != "" ) )
|
||||||
|
|
Loading…
Add table
Reference in a new issue