use of net.runelite.api.events.MapRegionChanged in project runelite by runelite.
the class RSClientMixin method mapRegionsChanged.
@FieldHook("mapRegions")
@Inject
public static void mapRegionsChanged(int idx) {
MapRegionChanged regionChanged = new MapRegionChanged();
regionChanged.setIndex(idx);
eventBus.post(regionChanged);
}
Aggregations