Update client.cpp

fixed bug with BEGIN_GENERAL to MainCursor being skipped before since it was starting at GENERAL_BAGS_BEGIN
This commit is contained in:
Arthur Ice 2014-09-06 12:56:35 -07:00
parent b1587f0326
commit b2aa3262a9

View File

@ -7924,7 +7924,7 @@ void Client::ItemTimerCheck()
TryItemTimer(i);
}
for(i = EmuConstants::GENERAL_BAGS_BEGIN; i <= MainCursor; i++)
for(i = EmuConstants::GENERAL_BEGIN; i <= MainCursor; i++)
{
TryItemTimer(i);
}