From 6a5a6e24533aabe7f14bce58b342567b43964f1b Mon Sep 17 00:00:00 2001 From: M'Dic Date: Tue, 3 Jan 2023 15:54:41 -0500 Subject: [PATCH] fix (db): EOTS BG StartMaxDist (#14489) this fixes the StartMaxDist to the appropiate size of 10 instead of default which will never flag the player for being outside the start spot before the bg starts (exploit) and there fore will never tele them back into place after 9 seconds. --- data/sql/updates/pending_db_world/eots-maxdist.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 data/sql/updates/pending_db_world/eots-maxdist.sql diff --git a/data/sql/updates/pending_db_world/eots-maxdist.sql b/data/sql/updates/pending_db_world/eots-maxdist.sql new file mode 100644 index 000000000..c672f26ea --- /dev/null +++ b/data/sql/updates/pending_db_world/eots-maxdist.sql @@ -0,0 +1,3 @@ +DELETE FROM `battleground_template` WHERE `ID`=7; +INSERT INTO `battleground_template` (`ID`, `MinPlayersPerTeam`, `MaxPlayersPerTeam`, `MinLvl`, `MaxLvl`, `AllianceStartLoc`, `AllianceStartO`, `HordeStartLoc`, `HordeStartO`, `StartMaxDist`, `Weight`, `ScriptName`, `Comment`) VALUES +(7, 8, 15, 61, 80, 1103, 3.03123, 1104, 0.055761, 10, 1, '', 'Eye of The Storm (battleground)');