diff options
author | Aokromes <Aokromes@users.noreply.github.com> | 2024-11-05 18:35:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-05 18:35:30 +0100 |
commit | 6dd142dcd7702e1a336145f873101312126e792e (patch) | |
tree | b01b38d9c7835a5446c6967a0f34606b761d572b | |
parent | 98cd499ab0bb930fa33d94ddc974a73d1d826216 (diff) |
DB/Trainer: Correct ReqLevel for Darnassus and Thunder Bluff spells
closes #30403 by CraftedRO
-rw-r--r-- | sql/updates/world/3.3.5/2024_11_05_01_world.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2024_11_05_01_world.sql b/sql/updates/world/3.3.5/2024_11_05_01_world.sql new file mode 100644 index 00000000000..d1e4583c8b3 --- /dev/null +++ b/sql/updates/world/3.3.5/2024_11_05_01_world.sql @@ -0,0 +1,5 @@ +-- Portal: Darnassus AND Portal: Thunder Bluff required lvl 50 +UPDATE `trainer_spell` SET `ReqLevel`=50 WHERE `SpellID` IN (11419,11420); + +-- Teleport: Darnassus AND Teleport: Thunder Bluff required lvl 30 +UPDATE `trainer_spell` SET `ReqLevel`=30 WHERE `SpellID` IN (3565,3566); |