Moin, habe nen kleinen Anzeigefehler im Privaten Laden.
Ich bräuchte den größten Wert für DWORD und BYTE
C
- void CPythonShop::AddPrivateShopItemStock(TItemPos ItemPos, BYTE dwDisplayPos, DWORD dwPrice)
- {
- DelPrivateShopItemStock(ItemPos);
- TShopItemTable SellingItem;
- SellingItem.vnum = 0;
- SellingItem.count = 0;
- SellingItem.pos = ItemPos;
- SellingItem.price = dwPrice;
- SellingItem.display_pos = dwDisplayPos;
- m_PrivateShopItemStock.insert(make_pair(ItemPos, SellingItem));
- }