From e7845f780e2a9cb588c1848c4feda3ce0a535346 Mon Sep 17 00:00:00 2001 From: Nay Date: Sat, 26 May 2012 16:39:37 +0100 Subject: DB/NPC: Use the same flags_extra (no skill gain) and immunities (grip and bleed) to all the training dummies. Closes #1853 --- sql/updates/world/2012_05_26_02_world_creature_template.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 sql/updates/world/2012_05_26_02_world_creature_template.sql (limited to 'sql') diff --git a/sql/updates/world/2012_05_26_02_world_creature_template.sql b/sql/updates/world/2012_05_26_02_world_creature_template.sql new file mode 100644 index 00000000000..e51567390b7 --- /dev/null +++ b/sql/updates/world/2012_05_26_02_world_creature_template.sql @@ -0,0 +1,5 @@ +-- Training dummies +UPDATE `creature_template` SET + `flags_extra`=0x40000, /* NO_SKILLGAIN */ + `mechanic_immune_mask`=0x20|0x4000 /* GRIP|BLEED */ /* two of the templates already had bleed immunity, is that correct? */ +WHERE `ScriptName`='npc_training_dummy'; -- cgit v1.2.3