Skip to content

Commit

Permalink
[U] 1.2.0-dev16
Browse files Browse the repository at this point in the history
  • Loading branch information
ClayCoffee committed Jul 6, 2020
1 parent 42cfac6 commit e838caa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>club.claycoffee</groupId>
<artifactId>ClayTech</artifactId>
<version>1.2.0-dev15</version>
<version>1.2.0-dev16</version>
<build>
<plugins>
<plugin>
Expand All @@ -29,7 +29,7 @@
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.15.2-R0.1-SNAPSHOT</version>
<version>1.16.1-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ protected void tick(Block b) {

for (MachineRecipe recipe : recipes) {
for (ItemStack input : recipe.getInput()) {
if(input == null) continue;
for (int slot : getInputSlots()) {
if (SlimefunUtils.isItemSimilar(inv.getItemInSlot(slot), input, true)) {
found.put(slot, input.getAmount());
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: ClayTech
main: club.claycoffee.ClayTech.ClayTech
version: 1.2.0-dev15
version: 1.2.0-dev16
api-version: 1.13
author: ClayCoffee
loadbefore: [Multiverse-Core]
Expand Down

0 comments on commit e838caa

Please sign in to comment.