mirror of
https://github.com/EQEmu/Server.git
synced 2026-03-10 10:12:24 +00:00
Update eqemu_update.pl (v8) to use new AA data post AA rework for fresh AA table downloads [skip ci]
This commit is contained in:
parent
4c0a9562ee
commit
13ba997589
@ -494,7 +494,7 @@ bool Database::CheckDatabaseConversions() {
|
|||||||
/* Check for a new version of this script, the arg passed
|
/* Check for a new version of this script, the arg passed
|
||||||
would have to be higher than the copy they have downloaded
|
would have to be higher than the copy they have downloaded
|
||||||
locally and they will re fetch */
|
locally and they will re fetch */
|
||||||
system("perl eqemu_update.pl V 7");
|
system("perl eqemu_update.pl V 8");
|
||||||
|
|
||||||
/* Run Automatic Database Upgrade Script */
|
/* Run Automatic Database Upgrade Script */
|
||||||
system("perl eqemu_update.pl ran_from_world");
|
system("perl eqemu_update.pl ran_from_world");
|
||||||
|
|||||||
@ -22,7 +22,7 @@ if($Config{osname}=~/linux/i){ $OS = "Linux"; }
|
|||||||
if($Config{osname}=~/Win|MS/i){ $OS = "Windows"; }
|
if($Config{osname}=~/Win|MS/i){ $OS = "Windows"; }
|
||||||
|
|
||||||
#::: If current version is less than what world is reporting, then download a new one...
|
#::: If current version is less than what world is reporting, then download a new one...
|
||||||
$current_version = 7;
|
$current_version = 8;
|
||||||
|
|
||||||
if($ARGV[0] eq "V"){
|
if($ARGV[0] eq "V"){
|
||||||
if($ARGV[1] > $current_version){
|
if($ARGV[1] > $current_version){
|
||||||
@ -377,9 +377,9 @@ sub AA_Fetch{
|
|||||||
}
|
}
|
||||||
|
|
||||||
print "Pulling down PEQ AA Tables...\n";
|
print "Pulling down PEQ AA Tables...\n";
|
||||||
GetRemoteFile("https://raw.githubusercontent.com/EQEmu/Server/master/utils/sql/peq_aa_tables.sql", "db_update/peq_aa_tables.sql");
|
GetRemoteFile("https://raw.githubusercontent.com/EQEmu/Server/master/utils/sql/peq_aa_tables_post_rework.sql", "db_update/peq_aa_tables_post_rework.sql");
|
||||||
print "\n\nInstalling AA Tables...\n";
|
print "\n\nInstalling AA Tables...\n";
|
||||||
print GetMySQLResultFromFile("db_update/peq_aa_tables.sql");
|
print GetMySQLResultFromFile("db_update/peq_aa_tables_post_rework.sql");
|
||||||
print "\nDone...\n\n";
|
print "\nDone...\n\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
20650
utils/sql/peq_aa_tables_post_rework.sql
Normal file
20650
utils/sql/peq_aa_tables_post_rework.sql
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user