Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/maxlego08/zitemstacker

Allows you to stack your items to reduce the number of items on the floor
https://github.com/maxlego08/zitemstacker

items java minecraft

Last synced: about 1 month ago
JSON representation

Allows you to stack your items to reduce the number of items on the floor

Awesome Lists containing this project

README

        

# zItemStacker

Allows you to stack your items

## API

Java docs: https://javadocs.groupez.xyz/zitemstacker/

Get ItemManager:
```java

ItemManager itemManager = getProvider(ItemManager.class);

public T getProvider(Class classz) {
RegisteredServiceProvider provider = getServer().getServicesManager().getRegistration(classz);
if (provider == null) {
log.log("Unable to retrieve the provider " + classz.toString(), LogType.WARNING);
return null;
}
return provider.getProvider() != null ? (T) provider.getProvider() : null;
}
```