use of com.almuradev.almura.feature.exchange.network.ServerboundListItemsRequestPacket in project Almura by AlmuraDev.
the class ClientExchangeManager method updateListItems.
public void updateListItems(final String id, final List<InventoryAction> actions) {
checkNotNull(id);
this.network.sendToServer(new ServerboundListItemsRequestPacket(id, actions));
}
Aggregations