Merge commit '7e83dd073e0bc322b975df66d061a6f7fe059bf1' into pullstream

This commit is contained in:
Rebekah 2024-02-14 06:33:17 -05:00
commit 11a4662f5d
Signed by: oneechanhax
GPG Key ID: 183EB7902964DAE5

View File

@ -276,7 +276,7 @@ AString ItemTypeToString(short a_ItemType)
AString ItemToFullString(const cItem & a_Item)
{
return fmt::format(FMT_STRING("{}:{} * {}"), ItemToString(a_Item), a_Item.m_ItemDamage, a_Item.m_ItemCount);
return fmt::format(FMT_STRING("{}:{} * {:d}"), ItemToString(a_Item), a_Item.m_ItemDamage, a_Item.m_ItemCount);
}