fix(DB): ore node now spawns above ground (#6876)

- Prevents the ore node (GUID 75523) in Hillsbrad Foothills from spawning in the ground, by it now spawning on a nearby hill
- Closes #5942
This commit is contained in:
Jan M. D. Hansen
2021-07-16 09:48:02 +02:00
committed by GitHub
parent b405b5130a
commit dc230d101c

View File

@@ -0,0 +1,4 @@
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1625958180512949700');
-- move ore node above to a nearby hill
UPDATE `gameobject` SET `position_x` = -781.1, `position_y` = 185.2, `position_z` = 59.6 WHERE `id` = 103711 AND `guid` = 75523;