mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-17 03:08:26 +00:00
Implement content flags
This commit is contained in:
@@ -100,6 +100,10 @@ if ($requested_table_to_generate eq "all" || !$requested_table_to_generate) {
|
||||
}
|
||||
}
|
||||
|
||||
if ($requested_table_to_generate ne "all") {
|
||||
@tables = ($requested_table_to_generate);
|
||||
}
|
||||
|
||||
my $generated_base_repository_files = "";
|
||||
my $generated_repository_files = "";
|
||||
|
||||
|
||||
@@ -80,3 +80,6 @@ ALTER TABLE `zone_points` ADD `content_flags` varchar(100) NULL;
|
||||
|
||||
-- pok books
|
||||
update doors set min_expansion = 4 where name like '%POKTELE%';
|
||||
|
||||
-- content flags
|
||||
CREATE TABLE `content_flags` (`id` int AUTO_INCREMENT,`flag_name` varchar(75),`enabled` tinyint,`notes` text, PRIMARY KEY (id));
|
||||
|
||||
Reference in New Issue
Block a user