Name removed from comments

This commit is contained in:
JohnsonAskot 2015-02-07 14:35:43 -05:00
parent 63810d5c1b
commit 7bf054bd58
3 changed files with 3 additions and 3 deletions

View File

@ -2524,7 +2524,7 @@ bool Client::BindWound(Mob* bindmob, bool start, bool fail){
} }
} }
} }
else if (bindwound_timer.Check()) // Did the timer finish? No? Then why the hell do they get free hpz?! -Lecht else if (bindwound_timer.Check()) // Did the timer finish?
{ {
// finish bind // finish bind
// disable complete timer // disable complete timer

View File

@ -12145,7 +12145,7 @@ void Client::Handle_OP_ShopPlayerBuy(const EQApplicationPacket *app)
mp->quantity = prevcharges; mp->quantity = prevcharges;
} }
// Item's stackable, but the quantity they want to buy exceeds the max stackable quantity. -Lecht // Item's stackable, but the quantity they want to buy exceeds the max stackable quantity.
if (item->Stackable && mp->quantity > item->StackSize) if (item->Stackable && mp->quantity > item->StackSize)
mp->quantity = item->StackSize; mp->quantity = item->StackSize;

View File

@ -239,7 +239,7 @@ bool Client::Process() {
if(IsAIControlled()) if(IsAIControlled())
AI_Process(); AI_Process();
// Don't reset the bindwound timer so we can check it in BindWound as well. -Lecht // Don't reset the bindwound timer so we can check it in BindWound as well.
if (bindwound_timer.Check(false) && bindwound_target != 0) { if (bindwound_timer.Check(false) && bindwound_target != 0) {
BindWound(bindwound_target, false); BindWound(bindwound_target, false);
} }