diff --git a/src/world/Actor/Player.cpp b/src/world/Actor/Player.cpp index e98f8008..274f336f 100644 --- a/src/world/Actor/Player.cpp +++ b/src/world/Actor/Player.cpp @@ -1952,7 +1952,7 @@ void Sapphire::Entity::Player::dyeItemFromDyeingInfo() // 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 ); } diff --git a/src/world/Network/PacketWrappers/ExaminePacket.h b/src/world/Network/PacketWrappers/ExaminePacket.h index 13f54726..55b16c56 100644 --- a/src/world/Network/PacketWrappers/ExaminePacket.h +++ b/src/world/Network/PacketWrappers/ExaminePacket.h @@ -74,7 +74,7 @@ namespace Sapphire::Network::Packets::Server auto& entry = m_data.entries[i]; entry.catalogId = pItem->getId(); entry.quality = pItem->isHq(); - entry.stain = static_cast < uint8_t > ( pItem->getStain() ); + entry.stain = static_cast< uint8_t >( pItem->getStain() ); //entry.appearanceCatalogId = pItem->getGlamourId() // todo: glamour/materia etc. }