Remove guard on PC_TICK

This commit is contained in:
gsemaj 2024-06-23 23:30:21 -07:00
parent 6f88613ede
commit b0e2391f24
No known key found for this signature in database
GPG Key ID: 24B96BAA40497929

View File

@ -908,10 +908,6 @@ static void playerTick(CNServer *serv, time_t currTime) {
Player *plr = pair.second; Player *plr = pair.second;
bool transmit = false; bool transmit = false;
// don't tick players that haven't loaded in yet
if (!plr->initialLoadDone)
continue;
// group ticks // group ticks
if (plr->group != nullptr) if (plr->group != nullptr)
Groups::groupTickInfo(sock); Groups::groupTickInfo(sock);