mirror of
https://github.com/EQEmu/Server.git
synced 2026-08-29 08:38:20 +00:00
[Cleanup] Cleanup Haste references and Lua API calls for unsigned to signed. (#2240)
This commit is contained in:
+1
-1
@@ -353,7 +353,7 @@ void Client::AddItemBonuses(const EQ::ItemInstance *inst, StatBonuses *newbon, b
|
||||
}
|
||||
|
||||
// FatherNitwit: New style haste, shields, and regens
|
||||
if (newbon->haste < (int32)item->Haste) {
|
||||
if (newbon->haste < item->Haste) {
|
||||
newbon->haste = item->Haste;
|
||||
}
|
||||
if (item->Regen > 0)
|
||||
|
||||
Reference in New Issue
Block a user