diff options
author | CraftedRO <24683355+CraftedRO@users.noreply.github.com> | 2024-06-27 19:54:31 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-27 18:54:31 +0200 |
commit | c5a9ab65af58c8642f914c31f327f09ca3a0ce0c (patch) | |
tree | 14d02252a2e0e9306cc9caa16a022c752d11cc5c /sql/updates | |
parent | 6c15d7f7502d50520b502067c6401a4bf11075a2 (diff) |
Core/Players: Add level restrictions for faction changes (#30057)
Co-authored-by: Shauren <shauren.trinity@gmail.com>
Diffstat (limited to 'sql/updates')
-rw-r--r-- | sql/updates/world/3.3.5/2024_06_27_01_world.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2024_06_27_01_world.sql b/sql/updates/world/3.3.5/2024_06_27_01_world.sql new file mode 100644 index 00000000000..0653afc6a3a --- /dev/null +++ b/sql/updates/world/3.3.5/2024_06_27_01_world.sql @@ -0,0 +1,5 @@ +-- +DELETE FROM `trinity_string` WHERE `entry` IN (397,398); +INSERT INTO `trinity_string` (`entry`, `content_default`) VALUES +(397, "Characters below level 10 are not eligible for faction change."), +(398, "Death Knights below level 60 are not eligible for faction change."); |