- Timestamp:
- 11/19/08 13:47:12 (17 years ago)
- Location:
- trunk/src/game
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/game/Player.cpp
r213 r215 16606 16606 16607 16607 // prevent stealth flight 16608 RemoveAurasWithInterruptFlags(AURA_INTERRUPT_FLAG_ LOOT);16608 RemoveAurasWithInterruptFlags(AURA_INTERRUPT_FLAG_TALK); 16609 16609 16610 16610 WorldPacket data(SMSG_ACTIVATETAXIREPLY, 4); -
trunk/src/game/SpellEffects.cpp
r214 r215 3480 3480 { 3481 3481 // Reveal action + get attack 3482 m_caster->RemoveAurasWithInterruptFlags(AURA_INTERRUPT_FLAG_ LOOT);3482 m_caster->RemoveAurasWithInterruptFlags(AURA_INTERRUPT_FLAG_TALK); 3483 3483 if (((Creature*)unitTarget)->AI()) 3484 3484 ((Creature*)unitTarget)->AI()->AttackStart(m_caster); -
trunk/src/game/Unit.h
r213 r215 68 68 AURA_INTERRUPT_FLAG_NOT_UNDERWATER = 0x00000100, // 8 removed by leaving water 69 69 AURA_INTERRUPT_FLAG_NOT_SHEATHED = 0x00000200, // 9 removed by unsheathing 70 AURA_INTERRUPT_FLAG_ LOOT = 0x00000400, // 1071 AURA_INTERRUPT_FLAG_ MOUNT = 0x00000800, // 11 removed by mounting70 AURA_INTERRUPT_FLAG_TALK = 0x00000400, // 10 talk to npc / loot? action on creature 71 AURA_INTERRUPT_FLAG_USE = 0x00000800, // 11 mine/use/open action on gameobject 72 72 AURA_INTERRUPT_FLAG_ATTACK = 0x00001000, // 12 removed by attacking 73 73 AURA_INTERRUPT_FLAG_CAST = 0x00002000, // 13 ??? … … 75 75 AURA_INTERRUPT_FLAG_TRANSFORM = 0x00008000, // 15 removed by transform? 76 76 AURA_INTERRUPT_FLAG_UNK16 = 0x00010000, // 16 77 AURA_INTERRUPT_FLAG_ UNK17= 0x00020000, // 17 misdirect, aspect, swim speed77 AURA_INTERRUPT_FLAG_MOUNT = 0x00020000, // 17 misdirect, aspect, swim speed 78 78 AURA_INTERRUPT_FLAG_NOT_SEATED = 0x00040000, // 18 removed by standing up 79 79 AURA_INTERRUPT_FLAG_CHANGE_MAP = 0x00080000, // 19 leaving map/getting teleported