1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2026-01-30 14:32:48 +00:00

Added more debug messages

This commit is contained in:
rogiel
2011-05-07 01:17:04 -03:00
parent 51aea46020
commit d8bb472d57
3 changed files with 18 additions and 22 deletions

View File

@@ -2,6 +2,8 @@ package com.l2jserver.model.world.player;
import com.l2jserver.model.world.actor.ActorEvent;
import com.l2jserver.model.world.actor.ActorListener;
import com.l2jserver.model.world.event.WorldEvent;
import com.l2jserver.model.world.event.WorldListener;
public abstract class PlayerListener implements ActorListener {
@Override
@@ -12,11 +14,7 @@ public abstract class PlayerListener implements ActorListener {
}
/**
* Once the event call is dispatched, the listener <b>WILL NOT</b> be
* removed. You must manually remove it from the <tt>event</tt> object.
*
* @param e
* the event
* @see WorldListener#dispatch(WorldEvent)
*/
protected abstract boolean dispatch(PlayerEvent e);
}