1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-26 22:37:45 +00:00

Fixed Shitty commit mistake

This commit is contained in:
Biscuit Boy 2018-04-19 22:27:57 +10:00
parent f815e3e3d2
commit 51a1c020a1
2 changed files with 2 additions and 9 deletions

View file

@ -509,6 +509,8 @@ public:
void emote( uint32_t emoteId, uint64_t targetId );
void sendZoneInPackets( uint32_t param1, uint32_t param2, uint32_t param3, uint32_t param4, bool pSetStatus );
void finishZoning();
void sendZonePackets();

View file

@ -321,15 +321,6 @@ void Core::DebugCommandHandler::set( char * data, Entity::Player& player, boost:
{
pTerriMgr->disableCurrentFestival();
}
else if( subCommand == "logout" )
{
Network::Packets::ZoneChannelPacket< Network::Packets::Server::FFXIVIpcLogout > logoutPacket( player.getId() );
logoutPacket.data().flags1 = 0x0;
logoutPacket.data().flags2 = 0xE179C650;
player.queuePacket( logoutPacket );
player.setMarkedForRemoval();
}
else
{
player.sendUrgent( subCommand + " is not a valid SET command." );