mirror of
https://github.com/EQEmu/Server.git
synced 2026-03-06 02:02:25 +00:00
Remove scaling hack for client 62 (untested)
This commit is contained in:
parent
73e398b0f4
commit
30922afd08
@ -8,6 +8,7 @@ demonstar55: UF too
|
|||||||
demonstar55: Tit
|
demonstar55: Tit
|
||||||
demonstar55: SoF
|
demonstar55: SoF
|
||||||
demonstar55: SoD
|
demonstar55: SoD
|
||||||
|
demonstar55: 62 (untested)
|
||||||
|
|
||||||
== 11/13/2014 ==
|
== 11/13/2014 ==
|
||||||
Kayen: Implemented target type (44) 'Beams' (which projects an AE infront of caster with a specified length and width).
|
Kayen: Implemented target type (44) 'Beams' (which projects an AE infront of caster with a specified length and width).
|
||||||
|
|||||||
@ -1231,7 +1231,7 @@ namespace Client62
|
|||||||
int16 slot_id = ServerToClient62Slot(slot_id_in);
|
int16 slot_id = ServerToClient62Slot(slot_id_in);
|
||||||
uint32 merchant_slot = inst->GetMerchantSlot();
|
uint32 merchant_slot = inst->GetMerchantSlot();
|
||||||
int16 charges = inst->GetCharges();
|
int16 charges = inst->GetCharges();
|
||||||
const Item_Struct *item = inst->GetItem();
|
const Item_Struct *item = inst->GetUnscaledItem();
|
||||||
int i;
|
int i;
|
||||||
uint32 sub_length;
|
uint32 sub_length;
|
||||||
|
|
||||||
@ -1244,7 +1244,7 @@ namespace Client62
|
|||||||
(merchant_slot == 0) ? slot_id_in : merchant_slot,
|
(merchant_slot == 0) ? slot_id_in : merchant_slot,
|
||||||
inst->GetPrice(),
|
inst->GetPrice(),
|
||||||
(merchant_slot == 0) ? 1 : inst->GetMerchantCount(),
|
(merchant_slot == 0) ? 1 : inst->GetMerchantCount(),
|
||||||
0,
|
inst->IsScaling() ? inst->GetExp() / 100 : 0,
|
||||||
//merchant_slot, //instance ID, bullshit for now
|
//merchant_slot, //instance ID, bullshit for now
|
||||||
// The 'Merchant Slot' needs to be some unique id for bazaar to work properly
|
// The 'Merchant Slot' needs to be some unique id for bazaar to work properly
|
||||||
(merchant_slot == 0) ? inst->GetSerialNumber() : merchant_slot,
|
(merchant_slot == 0) ? inst->GetSerialNumber() : merchant_slot,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user