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

more style changes

This commit is contained in:
Arazati 2020-03-16 02:08:35 -07:00
parent 02f1bd71c5
commit 1496999358
2 changed files with 2 additions and 2 deletions

View file

@ -1952,7 +1952,7 @@ void Sapphire::Entity::Player::dyeItemFromDyeingInfo()
// TODO: subtract/remove dye used // TODO: subtract/remove dye used
insertInventoryItem( static_cast < Sapphire::Common::InventoryType > ( itemToDyeContainer ), static_cast < uint16_t > ( itemToDyeSlot ), itemToDye ); insertInventoryItem( static_cast< Sapphire::Common::InventoryType >( itemToDyeContainer ), static_cast< uint16_t >( itemToDyeSlot ), itemToDye );
writeItem( itemToDye ); writeItem( itemToDye );
} }

View file

@ -74,7 +74,7 @@ namespace Sapphire::Network::Packets::Server
auto& entry = m_data.entries[i]; auto& entry = m_data.entries[i];
entry.catalogId = pItem->getId(); entry.catalogId = pItem->getId();
entry.quality = pItem->isHq(); entry.quality = pItem->isHq();
entry.stain = static_cast < uint8_t > ( pItem->getStain() ); entry.stain = static_cast< uint8_t >( pItem->getStain() );
//entry.appearanceCatalogId = pItem->getGlamourId() //entry.appearanceCatalogId = pItem->getGlamourId()
// todo: glamour/materia etc. // todo: glamour/materia etc.
} }