use of net.runelite.api.events.NpcActionChanged in project runelite by runelite.
the class RSNpcCompositionMixin method actionsHook.
@FieldHook("actions")
@Inject
public void actionsHook(int idx) {
NpcActionChanged npcActionChanged = new NpcActionChanged();
npcActionChanged.setNpcComposition(this);
npcActionChanged.setIdx(idx);
eventBus.post(npcActionChanged);
}
Aggregations