diff --git a/common/database_conversions.cpp b/common/database_conversions.cpp index c3c54cde5..510d98f76 100644 --- a/common/database_conversions.cpp +++ b/common/database_conversions.cpp @@ -494,7 +494,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 10"); + system("perl eqemu_update.pl V 11"); /* 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 00d506630..eb3e49f53 100644 --- a/utils/scripts/eqemu_update.pl +++ b/utils/scripts/eqemu_update.pl @@ -22,7 +22,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 = 10; +$current_version = 11; if($ARGV[0] eq "V"){ if($ARGV[1] > $current_version){ @@ -241,31 +241,33 @@ sub menu_options { $bots_management = "Install bots database pre-requisites (Requires bots server binaries)"; } else{ - $bots_management = "Check for Bot pending REQUIRED database updates..."; + $bots_management = "Check for Bot pending REQUIRED database updates... (Must have bots enabled)"; } } } else{ $option[3] = "Check and stage pending REQUIRED Database updates"; - $bots_management = "Check for Bot REQUIRED database updates..."; + $bots_management = "Check for Bot REQUIRED database updates... (Must have bots enabled)"; } return <