Remove scaling hack for client 62 (untested)

This commit is contained in:
Michael Cook (mackal) 2014-11-15 01:01:57 -05:00
parent 73e398b0f4
commit 30922afd08
2 changed files with 3 additions and 2 deletions

View File

@ -8,6 +8,7 @@ demonstar55: UF too
demonstar55: Tit
demonstar55: SoF
demonstar55: SoD
demonstar55: 62 (untested)
== 11/13/2014 ==
Kayen: Implemented target type (44) 'Beams' (which projects an AE infront of caster with a specified length and width).

View File

@ -1231,7 +1231,7 @@ namespace Client62
int16 slot_id = ServerToClient62Slot(slot_id_in);
uint32 merchant_slot = inst->GetMerchantSlot();
int16 charges = inst->GetCharges();
const Item_Struct *item = inst->GetItem();
const Item_Struct *item = inst->GetUnscaledItem();
int i;
uint32 sub_length;
@ -1244,7 +1244,7 @@ namespace Client62
(merchant_slot == 0) ? slot_id_in : merchant_slot,
inst->GetPrice(),
(merchant_slot == 0) ? 1 : inst->GetMerchantCount(),
0,
inst->IsScaling() ? inst->GetExp() / 100 : 0,
//merchant_slot, //instance ID, bullshit for now
// The 'Merchant Slot' needs to be some unique id for bazaar to work properly
(merchant_slot == 0) ? inst->GetSerialNumber() : merchant_slot,