From e1f5064c9df720d33bbe7a52525b44ee895e283b Mon Sep 17 00:00:00 2001 From: NoxMax <50133316+NoxMax@users.noreply.github.com> Date: Fri, 27 Mar 2026 19:47:29 -0600 Subject: [PATCH] Fix SQL ID conflict (#2251) ## Pull Request Description Just a quick update to SQL IDs after seeing that #2131 and #2211 (which are only in test-staging as of right now) use the same IDs. ## Feature Evaluation - Describe the **minimum logic** required to achieve the intended behavior. - Describe the **processing cost** when this logic executes across many bots. ## How to Test the Changes ## Impact Assessment - Does this change increase per-bot/per-tick processing or risk scaling poorly with thousands of bots? - - [ ] No, not at all - - [ ] Minimal impact (**explain below**) - - [ ] Moderate impact (**explain below**) - Does this change modify default bot behavior? - - [ ] No - - [ ] Yes (**explain why**) - Does this change add new decision branches or increase maintenance complexity? - - [ ] No - - [ ] Yes (**explain below**) ## Messages to Translate - Does this change add bot messages to translate? - - [ ] No - - [ ] Yes (**list messages in the table**) | Message key | Default message | | --------------- | ------------------ | | | | | | | ## AI Assistance - Was AI assistance used while working on this change? - - [ ] No - - [ ] Yes (**explain below**) ## Final Checklist - - [ ] Stability is not compromised. - - [ ] Performance impact is understood, tested, and acceptable. - - [ ] Added logic complexity is justified and explained. - - [ ] Documentation updated if needed (Conf comments, WiKi commands). ## Notes for Reviewers --- .../updates/2026_03_26_ai_playerbot_logout_texts.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/data/sql/playerbots/updates/2026_03_26_ai_playerbot_logout_texts.sql b/data/sql/playerbots/updates/2026_03_26_ai_playerbot_logout_texts.sql index 344e6109d..05f6d5d03 100644 --- a/data/sql/playerbots/updates/2026_03_26_ai_playerbot_logout_texts.sql +++ b/data/sql/playerbots/updates/2026_03_26_ai_playerbot_logout_texts.sql @@ -7,7 +7,7 @@ INSERT INTO `ai_playerbot_texts` `text_loc1`, `text_loc2`, `text_loc3`, `text_loc4`, `text_loc5`, `text_loc6`, `text_loc7`, `text_loc8`) VALUES ( - 1740, + 1743, 'bot_not_your_master', "You are not my master!", 0, 0, @@ -35,7 +35,7 @@ INSERT INTO `ai_playerbot_texts` `text_loc1`, `text_loc2`, `text_loc3`, `text_loc4`, `text_loc5`, `text_loc6`, `text_loc7`, `text_loc8`) VALUES ( - 1741, + 1744, 'bot_rndbot_no_logout', "You can't command me to logout!", 0, 0, @@ -56,4 +56,4 @@ VALUES ( -- ruRU "Ты не можешь приказать мне выйти из игры!"); -INSERT INTO ai_playerbot_texts_chance (name, probability) VALUES ('bot_rndbot_no_logout', 100); \ No newline at end of file +INSERT INTO ai_playerbot_texts_chance (name, probability) VALUES ('bot_rndbot_no_logout', 100);