root/trunk/AE-go_GameServer/src/com/aionemu/gameserver/skillengine/effect/OpenAerialEffect.java
| 1467 | 1510 | ||
|---|---|---|---|
21 | import javax.xml.bind.annotation.XmlType; | 21 | import javax.xml.bind.annotation.XmlType; |
22 | 22 | ||
23 | import com.aionemu.gameserver.model.gameobjects.Creature; | 23 | import com.aionemu.gameserver.model.gameobjects.Creature; |
24 | import com.aionemu.gameserver.network.aion.serverpackets.SM_FORCED_MOVE; | ||
24 | import com.aionemu.gameserver.skillengine.model.Effect; | 25 | import com.aionemu.gameserver.skillengine.model.Effect; |
25 | import com.aionemu.gameserver.skillengine.model.SpellStatus; | 26 | import com.aionemu.gameserver.skillengine.model.SpellStatus; |
27 | import com.aionemu.gameserver.utils.PacketSendUtility; | ||
26 | 28 | ||
27 | /** | 29 | /** |
28 | * @author ATracer | 30 | * @author ATracer |
... | ... | ||
51 | { | 53 | { |
52 | final Creature effected = effect.getEffected(); | 54 | final Creature effected = effect.getEffected(); |
53 | effected.getEffectController().setAbnormal(EffectId.OPENAERIAL.getEffectId()); | 55 | effected.getEffectController().setAbnormal(EffectId.OPENAERIAL.getEffectId()); |
56 | PacketSendUtility.broadcastPacketAndReceive(effect.getEffected(), new SM_FORCED_MOVE(effect.getEffector(), effect.getEffected())); | ||
54 | } | 57 | } |
55 | 58 | ||
56 | @Override | 59 | @Override |
Download diff