Send client lockout update in lockout methods

Add optional client update argument to client lockout methods

This is better than requiring callers to manually send the update
This commit is contained in:
hg
2020-05-16 08:41:17 -04:00
parent d92c0e330d
commit a1b5b210dd
4 changed files with 19 additions and 11 deletions
-2
View File
@@ -1192,7 +1192,6 @@ void Expedition::ProcessLockoutUpdate(
{
member_client->RemoveExpeditionLockout(m_expedition_name, event_name);
}
member_client->SendExpeditionLockoutTimers();
}
}
@@ -1214,7 +1213,6 @@ void Expedition::ProcessLockoutUpdate(
} else {
client->RemoveExpeditionLockout(m_expedition_name, event_name);
}
client->SendExpeditionLockoutTimers();
}
}