Proper naming for setCreatureAttackedId.

This commit is contained in:
MobiusDevelopment
2021-12-05 21:25:40 +00:00
parent b255d5578c
commit 4a34015eca
21 changed files with 21 additions and 21 deletions

View File

@ -484,7 +484,7 @@ public abstract class AbstractScript extends ManagedScript implements IEventTime
* @param npcIds
* @return
*/
protected final List<AbstractEventListener> setCreatureAttackedid(Consumer<OnCreatureAttacked> callback, Collection<Integer> npcIds)
protected final List<AbstractEventListener> setCreatureAttackedId(Consumer<OnCreatureAttacked> callback, Collection<Integer> npcIds)
{
return registerConsumer(callback, EventType.ON_CREATURE_ATTACKED, ListenerRegisterType.NPC, npcIds);
}