Switched MobManager::step() to the timer.

It doesn't really need to run on every shard step. This makes it a lot
less hot.
This commit is contained in:
2020-09-22 21:31:08 +02:00
parent ba5998d53a
commit 95a79ec815
3 changed files with 4 additions and 4 deletions

View File

@@ -56,7 +56,7 @@ namespace MobManager {
extern std::map<int32_t, Mob*> Mobs;
void init();
void step(time_t);
void step(CNServer*, time_t);
void deadStep(Mob*, time_t);
void roamingStep(Mob*, time_t);