Fix for non-BOTS compile failure

This commit is contained in:
Uleat 2019-06-21 18:36:33 -04:00
parent 2cd910ad86
commit a8d3ba41a7

View File

@ -544,7 +544,9 @@ int main(int argc, char** argv) {
if (InterserverTimer.Check()) { if (InterserverTimer.Check()) {
InterserverTimer.Start(); InterserverTimer.Start();
database.ping(); database.ping();
#ifdef BOTS
botdb.ping(); botdb.ping();
#endif
entity_list.UpdateWho(); entity_list.UpdateWho();
} }
}; };