Minor fixes

This commit is contained in:
Anonymous
2014-01-16 10:55:16 -07:00
parent 77c2b5f6bc
commit 1c0b21c92f
12 changed files with 44 additions and 21 deletions
@@ -1415,7 +1415,7 @@ unsigned int GroupObject::getSecondsLeftOnGroupPickup() const
{
time_t const timeNow = ::time(NULL);
if (groupPickupTimer.second > timeNow)
return (groupPickupTimer.second - timeNow);
return (groupPickupTimer.second - (int)timeNow);
}
return 0;