Implement content flags

This commit is contained in:
Akkadius
2020-04-11 05:48:41 -05:00
parent 47b8aa3f18
commit 5b4c4bfd66
11 changed files with 535 additions and 96 deletions
@@ -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));