From 0de11df89740d131a0dbb5ad093031836204284b Mon Sep 17 00:00:00 2001 From: Alvin Zhu Date: Mon, 23 Jan 2023 20:10:57 +0800 Subject: [PATCH] fix Kobold --- sql/world/base/vanilla_mob_factions.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sql/world/base/vanilla_mob_factions.sql b/sql/world/base/vanilla_mob_factions.sql index 3d10517..424a594 100644 --- a/sql/world/base/vanilla_mob_factions.sql +++ b/sql/world/base/vanilla_mob_factions.sql @@ -2840,7 +2840,7 @@ UPDATE `creature_template` SET `faction` = 57 WHERE `entry` = 17080; UPDATE `creature_template` SET `faction` = 35 WHERE `entry` = 17231; /* Kobold Laborer */ -UPDATE `creature_template` SET `faction` = 26 WHERE `entry` = 257; +UPDATE `creature_template` SET `faction` = 26, flags_extra = 0 WHERE `entry` = 257; /* Kobold Worker */ -UPDATE `creature_template` SET `faction` = 26 WHERE `entry` = 80; +UPDATE `creature_template` SET `faction` = 26, flags_extra = 0 WHERE `entry` = 80;