diff --git a/common/database_conversions.cpp b/common/database_conversions.cpp index fc5877e05..fa7c57a12 100644 --- a/common/database_conversions.cpp +++ b/common/database_conversions.cpp @@ -493,7 +493,7 @@ bool Database::CheckDatabaseConversions() { /* Check for a new version of this script, the arg passed would have to be higher than the copy they have downloaded locally and they will re fetch */ - system("perl eqemu_update.pl V 12"); + system("perl eqemu_update.pl V 13"); /* Run Automatic Database Upgrade Script */ system("perl eqemu_update.pl ran_from_world"); diff --git a/utils/scripts/eqemu_update.pl b/utils/scripts/eqemu_update.pl index b6c4ab1d0..8fd3af540 100644 --- a/utils/scripts/eqemu_update.pl +++ b/utils/scripts/eqemu_update.pl @@ -23,7 +23,7 @@ if($Config{osname}=~/linux/i){ $OS = "Linux"; } if($Config{osname}=~/Win|MS/i){ $OS = "Windows"; } #::: If current version is less than what world is reporting, then download a new one... -$current_version = 12; +$current_version = 13; if($ARGV[0] eq "V"){ if($ARGV[1] > $current_version){ @@ -251,6 +251,7 @@ sub show_menu_prompt { 11 => \&fetch_latest_windows_binaries, 12 => \&fetch_server_dlls, 13 => \&do_windows_login_server_setup, + 19 => \&do_bots_db_schema_drop, 20 => \&do_update_self, 0 => \&script_exit, ); @@ -327,6 +328,7 @@ return <