mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-25 22:17:45 +00:00
Formatting
This commit is contained in:
parent
4bb0cd0f7b
commit
951dabb58a
4 changed files with 4 additions and 4 deletions
|
@ -2,7 +2,7 @@
|
|||
#include <chrono>
|
||||
#include <boost/variant/detail/substitute.hpp>
|
||||
|
||||
std::string Core::Util::binaryToHexString(uint8_t* pBinData, uint16_t size)
|
||||
std::string Core::Util::binaryToHexString( uint8_t* pBinData, uint16_t size )
|
||||
{
|
||||
std::string outStr;
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ namespace Util {
|
|||
|
||||
std::string binaryToHexString( uint8_t* pBinData, uint16_t size );
|
||||
|
||||
std::string binaryToHexDump(uint8_t* pBinData, uint16_t size);
|
||||
std::string binaryToHexDump( uint8_t* pBinData, uint16_t size );
|
||||
|
||||
uint64_t getTimeMs();
|
||||
|
||||
|
|
|
@ -1490,7 +1490,7 @@ void Core::Entity::Player::mount( uint32_t id )
|
|||
{
|
||||
GamePacketNew< FFXIVIpcMount, ServerZoneIpcType > mountPacket( getId() );
|
||||
mountPacket.data().id = id;
|
||||
sendToInRangeSet(mountPacket, true );
|
||||
sendToInRangeSet( mountPacket, true );
|
||||
}
|
||||
|
||||
void Core::Entity::Player::autoAttack( ActorPtr pTarget )
|
||||
|
|
|
@ -65,7 +65,7 @@ private:
|
|||
memcpy( m_data.orchestrionMask, player->getOrchestrionBitmask(), sizeof( m_data.orchestrionMask ) );
|
||||
|
||||
memset( m_data.mountGuideMask, 0xFF, sizeof( m_data.mountGuideMask) );
|
||||
memset(m_data.fishingGuideMask, 0xFF, sizeof(m_data.fishingGuideMask));
|
||||
memset( m_data.fishingGuideMask, 0xFF, sizeof(m_data.fishingGuideMask) );
|
||||
|
||||
memcpy( m_data.unlockBitmask, player->getUnlockBitmask(), sizeof( m_data.unlockBitmask ) );
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue