From e4c4baa7cbfa1643e07a3c15336d2f5295d60aea Mon Sep 17 00:00:00 2001 From: ariel- Date: Thu, 18 Feb 2016 20:56:53 -0300 Subject: [PATCH] DB/Misc: Fix server startup ERROR 1264 (22003) at line 3: Out of range value for column 'AllowableRaces' at row 1 --- .../2016_02_11_01_world_from_6x_was_2016_02_10_04_world.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sql/updates/world/2016_02_11_01_world_from_6x_was_2016_02_10_04_world.sql b/sql/updates/world/2016_02_11_01_world_from_6x_was_2016_02_10_04_world.sql index 00397623b90..fbb11f4260e 100644 --- a/sql/updates/world/2016_02_11_01_world_from_6x_was_2016_02_10_04_world.sql +++ b/sql/updates/world/2016_02_11_01_world_from_6x_was_2016_02_10_04_world.sql @@ -1,4 +1,4 @@ -- UPDATE `quest_template` SET `AllowableRaces`=0 WHERE `id` IN (13094, 13095); -UPDATE `quest_template` SET `AllowableRaces`=`AllowableRaces`|1|4|8|64|1024|2097152|16777216 WHERE id=13094; -UPDATE `quest_template` SET `AllowableRaces`=`AllowableRaces`|2|16|32|128|256|512|33554432 WHERE id=13095; +UPDATE `quest_template` SET `AllowableRaces`=`AllowableRaces`|1|4|8|64|1024|2097152 WHERE id=13094; +UPDATE `quest_template` SET `AllowableRaces`=`AllowableRaces`|2|16|32|128|256|512 WHERE id=13095;