mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-08-01 02:15:54 -04:00
28 lines
449 B
SQL
28 lines
449 B
SQL
/*
|
|
SQL for gold database update 20080929
|
|
*/
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
/*
|
|
Remove giant spire
|
|
Note: world snapshot update required with this change
|
|
*/
|
|
|
|
update objects
|
|
set deleted = 8 -- deleted by the publish process
|
|
where object_id = 60367;
|
|
|
|
/*
|
|
Move spawner
|
|
Note: no world snapshot update required
|
|
*/
|
|
|
|
update objects
|
|
set x = -2514, y = 130, z = 1481
|
|
where object_id = 4005699;
|
|
|
|
commit;
|
|
|
|
|