Sid Meier's Civilization VI

Sid Meier's Civilization VI

To Hell With The Devil: Religious units fight Rock Bands
DB 24 Apr, 2019 @ 3:30pm
SQL fix
Hi,

Wanted to let you know that you are missing parentheses in your THWTD.sql file. Each section after "values" needs them like so:

insert into TypeTags (Type, Tag) values ('UNIT_ROCK_BAND', 'CLASS_RELIGIOUS'); insert into TypeTags (Type, Tag) values ('UNIT_ROCK_BAND', 'CLASS_RELIGIOUS_ALL'); insert into TypeTags (Type, Tag) values ('UNIT_ROCK_BAND', 'CLASS_MISSIONARY');


Or you can put them all in one statement like this:
insert into TypeTags (Type, Tag) values ('UNIT_ROCK_BAND', 'CLASS_RELIGIOUS'), ('UNIT_ROCK_BAND', 'CLASS_RELIGIOUS_ALL'), ('UNIT_ROCK_BAND', 'CLASS_MISSIONARY');

Kind regards,
DB
Last edited by DB; 24 Apr, 2019 @ 3:30pm