mirror of
https://github.com/EQEmu/Server.git
synced 2026-02-27 07:12:24 +00:00
[Bug Fix] Fix Aug Clicks where item has no click effect. (#2725)
This commit is contained in:
parent
db7ab7a3ef
commit
3510ba2493
@ -8971,8 +8971,15 @@ void Client::Handle_OP_ItemVerifyRequest(const EQApplicationPacket *app)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if ((item->Click.Type == EQ::item::ItemEffectClick) || (item->Click.Type == EQ::item::ItemEffectExpendable) || (item->Click.Type == EQ::item::ItemEffectEquipClick) || (item->Click.Type == EQ::item::ItemEffectClick2))
|
else if (
|
||||||
{
|
item->Click.Effect > 0 &&
|
||||||
|
(
|
||||||
|
(item->Click.Type == EQ::item::ItemEffectClick) ||
|
||||||
|
(item->Click.Type == EQ::item::ItemEffectExpendable) ||
|
||||||
|
(item->Click.Type == EQ::item::ItemEffectEquipClick) ||
|
||||||
|
(item->Click.Type == EQ::item::ItemEffectClick2)
|
||||||
|
)
|
||||||
|
) {
|
||||||
if (inst->GetCharges() == 0)
|
if (inst->GetCharges() == 0)
|
||||||
{
|
{
|
||||||
//Message(Chat::White, "This item is out of charges.");
|
//Message(Chat::White, "This item is out of charges.");
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user