Added code to adjust custom faction bases down due to change in dubious range.

This commit is contained in:
Noudess 2019-03-01 10:12:21 -05:00
parent 96089e1718
commit 88b3d11167

View File

@ -72,6 +72,9 @@ update faction_list f
INNER JOIN oldbases o on o.id = f.id
set f.base = o.base;
/* Adjust for the big change in the dubious range */
update faction_list set base = base + 200 where base between -900 and -501;
DROP TABLE IF EXISTS oldbases;
/* Create mods based on the client_faction_associations */