mirror of
https://github.com/EQEmu/Server.git
synced 2026-03-04 00:02:24 +00:00
Added code to adjust custom faction bases down due to change in dubious range.
This commit is contained in:
parent
96089e1718
commit
88b3d11167
@ -72,6 +72,9 @@ update faction_list f
|
|||||||
INNER JOIN oldbases o on o.id = f.id
|
INNER JOIN oldbases o on o.id = f.id
|
||||||
set f.base = o.base;
|
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;
|
DROP TABLE IF EXISTS oldbases;
|
||||||
|
|
||||||
/* Create mods based on the client_faction_associations */
|
/* Create mods based on the client_faction_associations */
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user