--==========================================================================================================================
-- USER SETTINGS (Thanks to JFD <3)
--==========================================================================================================================
-- JFD_GlobalUserSettings
------------------------------------------------------------
CREATE TABLE IF NOT EXISTS
JFD_GlobalUserSettings (
Type text default null,
Value integer default 1);
--------------------------------------------------------------------------
-- Disabled =0 | Enabled =1
INSERT INTO JFD_GlobalUserSettings
(Type, Value)
VALUES ('SAMNITES_GREAT_PEOPLE_POINTS', 1), -- Put 0 to disable if you think that it is too OP that sanctuaries give also 1 Great Person point
('SAMNITES_FOUR_COMPONENTS', 0), -- Put 1 if you want to activate the 3rd and 4th Unique component (UB Enoteca, UI Oppidum)
('SAMNITES_VP_RES_HAPPINESS', 0); -- Put 1 if you are using Vox Populi-CBO (this changes from 4 to 1 the Happiness from Falanghina luxury resource)
--==========================================================================================================================
--==========================================================================================================================