Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
BiscuitUmU committed Sep 24, 2018
1 parent ef87b9b commit 30a47d3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/servers/sapphire_zone/Network/Handlers/PacketHandlers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,8 @@ void Core::Network::GameConnection::reqExamineSearchCommentHandler( const Core::

if( pPlayer )
{
if( pPlayer->isActingAsGm() || pPlayer->getZoneId() != player.getZoneId() ) return;
if( pPlayer->isActingAsGm() || pPlayer->getZoneId() != player.getZoneId() )
return;

// retail sends the requester's id as both (isForSelf)
auto searchInfoPacket = makeZonePacket< FFXIVIpcExamineSearchComment >( player.getId() );
Expand All @@ -146,7 +147,8 @@ void Core::Network::GameConnection::reqExamineFcInfo( const Core::Network::Packe

if( pPlayer )
{
if( pPlayer->isActingAsGm() || pPlayer->getZoneId() != player.getZoneId() ) return;
if( pPlayer->isActingAsGm() || pPlayer->getZoneId() != player.getZoneId() )
return;

// retail sends the requester's id as both (isForSelf)
auto examineFcInfoPacket = makeZonePacket< FFXIVIpcExamineFreeCompanyInfo >( player.getId() );
Expand Down

0 comments on commit 30a47d3

Please sign in to comment.