Skip to content

Commit 7c52af3

Browse files
committed
fix: fix issue, update axapi
1 parent 2b51eef commit 7c52af3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ repositories {
2828

2929
dependencies {
3030
implementation 'net.byteflux:libby-bukkit:1.2.0'
31-
implementation 'com.artillexstudios.axapi:axapi:1.4.10'
31+
implementation 'com.artillexstudios.axapi:axapi:1.4.39'
3232
implementation 'org.bstats:bstats-bukkit:3.0.2'
3333
compileOnly 'com.google.code.gson:gson:2.10.1'
3434
compileOnly 'org.spigotmc:spigot-api:1.20.1-R0.1-SNAPSHOT'

src/main/java/com/artillexstudios/axsmithing/gui/impl/SmithingTable_V1_16.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ private boolean checkRecipes(Inventory inv, ItemStack finalBase, ItemStack final
211211
boolean successful = checkRecipe(inv, finalBase, finalAddition);
212212

213213
if (!successful) {
214-
checkRecipe(inv, finalAddition, finalBase);
214+
successful = checkRecipe(inv, finalAddition, finalBase);
215215
}
216216

217217
return successful;

src/main/java/com/artillexstudios/axsmithing/gui/impl/SmithingTable_V1_20.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ private boolean checkRecipes(Inventory inv, ItemStack finalTemplate, ItemStack f
269269
successful = checkRecipe(inv, finalAddition, finalBase, finalTemplate);
270270
}
271271
if (!successful) {
272-
checkRecipe(inv, finalAddition, finalTemplate, finalBase);
272+
successful = checkRecipe(inv, finalAddition, finalTemplate, finalBase);
273273
}
274274

275275
return successful;

0 commit comments

Comments
 (0)