[Cleanup] Cleanup Haste references and Lua API calls for unsigned to signed. (#2240)

This commit is contained in:
Kinglykrab
2022-06-04 14:00:21 -04:00
committed by GitHub
parent 8414ce02e3
commit 7160aa651e
4 changed files with 20 additions and 20 deletions
+1 -1
View File
@@ -351,7 +351,7 @@ void Merc::AddItemBonuses(const EQ::ItemData *item, StatBonuses* newbon) {
}
//FatherNitwit: New style haste, shields, and regens
if(newbon->haste < (int16)item->Haste) {
if(newbon->haste < item->Haste) {
newbon->haste = item->Haste;
}
if(item->Regen > 0)