root/trunk/AE-go_GameServer/src/com/aionemu/gameserver/skillengine/effect/StaggerEffect.java

14141510
20
import javax.xml.bind.annotation.XmlAccessorType;
20
import javax.xml.bind.annotation.XmlAccessorType;
21
import javax.xml.bind.annotation.XmlType;
21
import javax.xml.bind.annotation.XmlType;
22
22
23
import com.aionemu.gameserver.network.aion.serverpackets.SM_FORCED_MOVE;
23
import com.aionemu.gameserver.skillengine.model.Effect;
24
import com.aionemu.gameserver.skillengine.model.Effect;
24
import com.aionemu.gameserver.skillengine.model.SpellStatus;
25
import com.aionemu.gameserver.skillengine.model.SpellStatus;
26
import com.aionemu.gameserver.utils.PacketSendUtility;
25
27
26
/**
28
/**
27
 * @author ATracer
29
 * @author ATracer
...
...
49
	public void startEffect(Effect effect)
51
	public void startEffect(Effect effect)
50
	{
52
	{
51
		effect.getEffected().getEffectController().setAbnormal(EffectId.STAGGER.getEffectId());
53
		effect.getEffected().getEffectController().setAbnormal(EffectId.STAGGER.getEffectId());
54
		PacketSendUtility.broadcastPacketAndReceive(effect.getEffected(), new SM_FORCED_MOVE(effect.getEffector(), effect.getEffected()));
52
	}
55
	}
53
	
56
	
54
	@Override
57
	@Override