From 9fa17ec1f1ab9e48e5148218c549b5a8b521674a Mon Sep 17 00:00:00 2001 From: Miraco Date: Tue, 30 Apr 2024 10:01:27 +0200 Subject: [PATCH] Botanica - correct speedwalk and speed run for all seedlings spawned during High Botanist Freywinn fight --- Updates/0394_bota_movement_corrections.sql | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Updates/0394_bota_movement_corrections.sql b/Updates/0394_bota_movement_corrections.sql index 8498d0691..b42172ccb 100644 --- a/Updates/0394_bota_movement_corrections.sql +++ b/Updates/0394_bota_movement_corrections.sql @@ -57,4 +57,9 @@ UPDATE creature_template SET SpeedWalk = '1', SpeedRun = '1.14286' WHERE entry I -- High Botanist Freywinn -- [0] WalkSpeed: 4 -- [0] RunSpeed: 10 -UPDATE creature_template SET SpeedWalk = '1.6', SpeedRun = '1.428' WHERE entry IN (17975, 21558); \ No newline at end of file +UPDATE creature_template SET SpeedWalk = '1.6', SpeedRun = '1.428' WHERE entry IN (17975, 21558); + +-- Green Seedling, Blue Seedling, White Seedling, Red Seedling +-- WalkSpeed: 2 +-- RunSpeed: 2 +UPDATE creature_template SET SpeedWalk = '0.8', SpeedRun = '0.285' WHERE entry IN (19958, 19962, 19964, 19969, 21550, 21557, 21566, 21583); \ No newline at end of file