Compare commits

...

3 Commits

Author SHA1 Message Date
ceze88 45ac8b3a9b Release v3.1.10 2024-04-22 11:42:03 +02:00
ceze88 b66db426f7 Update core version 2024-04-22 11:39:41 +02:00
ceze88 d8fe8df575 Add javadocs 2024-04-22 11:39:34 +02:00
4 changed files with 12 additions and 4 deletions

View File

@ -7,7 +7,7 @@
<parent>
<groupId>com.craftaro</groupId>
<artifactId>UltimateStacker-Parent</artifactId>
<version>3.1.9</version>
<version>3.1.10</version>
</parent>
<artifactId>UltimateStacker-API</artifactId>
<version>1.0.0-SNAPSHOT</version>

View File

@ -21,6 +21,14 @@ public interface StackedItemManager {
*/
@NotNull StackedItem getStackedItem(Item item);
/**
* Create a new StackedItem for the given ItemStack
* @param item The ItemStack to create the stack for
* @param location The location to spawn the stack
* @param amount The amount of items in the stack
* @param killed The entity that is dropping the item
* @return The StackedItem for the given Item or null if it could not be created
*/
@Nullable StackedItem createStack(ItemStack item, Location location, int amount, LivingEntity killed);
/**

View File

@ -7,7 +7,7 @@
<parent>
<groupId>com.craftaro</groupId>
<artifactId>UltimateStacker-Parent</artifactId>
<version>3.1.9</version>
<version>3.1.10</version>
</parent>
<artifactId>UltimateStacker-Plugin</artifactId>

View File

@ -7,7 +7,7 @@
<groupId>com.craftaro</groupId>
<artifactId>UltimateStacker-Parent</artifactId>
<packaging>pom</packaging>
<version>3.1.9</version>
<version>3.1.10</version>
<modules>
<module>UltimateStacker-API</module>
@ -19,7 +19,7 @@
<url>https://craftaro.com/marketplace/product/16</url>
<properties>
<craftaro.coreVersion>3.0.5-SNAPSHOT</craftaro.coreVersion>
<craftaro.coreVersion>3.0.6-SNAPSHOT</craftaro.coreVersion>
<maven.compiler.release>8</maven.compiler.release>
<maven.compiler.target>1.8</maven.compiler.target>