From a8d3ba41a7c5e4749bb9b843ac0c7e7b581b5fd6 Mon Sep 17 00:00:00 2001 From: Uleat Date: Fri, 21 Jun 2019 18:36:33 -0400 Subject: [PATCH] Fix for non-BOTS compile failure --- zone/net.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zone/net.cpp b/zone/net.cpp index 9be5074f2..522512f51 100644 --- a/zone/net.cpp +++ b/zone/net.cpp @@ -544,7 +544,9 @@ int main(int argc, char** argv) { if (InterserverTimer.Check()) { InterserverTimer.Start(); database.ping(); +#ifdef BOTS botdb.ping(); +#endif entity_list.UpdateWho(); } };