DB/NPC: Use the same flags_extra (no skill gain) and immunities (grip and bleed) to all the training dummies.

Closes #1853
This commit is contained in:
Nay
2012-05-26 16:39:37 +01:00
parent 61e006e4e9
commit e7845f780e

View File

@@ -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';