From 3a7908b1de0da73f3a844c3a81f7525d04808aaa Mon Sep 17 00:00:00 2001 From: Uleat Date: Mon, 30 Mar 2020 16:45:50 -0400 Subject: [PATCH] Fix for bots database updates not running when invoked from world.exe [skip ci] --- utils/scripts/eqemu_server.pl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/utils/scripts/eqemu_server.pl b/utils/scripts/eqemu_server.pl index 3c8663273..6618b021e 100755 --- a/utils/scripts/eqemu_server.pl +++ b/utils/scripts/eqemu_server.pl @@ -537,7 +537,10 @@ sub check_for_world_bootup_database_update { if ($binary_database_version == $local_database_version && $ARGV[0] eq "ran_from_world") { print "[Update] Database up to date...\n"; - exit; + if (trim($db_version[2]) == 0) { + print "[Update] Continuing bootup\n"; + exit; + } } else { #::: We ran world - Database needs to update, lets backup and run updates and continue world bootup