Skip to content

Commit

Permalink
never trust the client
Browse files Browse the repository at this point in the history
  • Loading branch information
CodexAdrian committed Oct 15, 2024
1 parent 8be42f5 commit 9764b7f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
- Fixed Loom Table item model size (#295).
- Fix bug with crafting
- Add JEI feature ( thank you mezz :D )
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public void craft(ItemStack stack, boolean replaceAll) {

boolean canCraft = false;
for (var result : results) {
if (ItemStack.isSameItem(result, stack)) {
if (ItemStack.isSameItemSameTags(result, stack)) {
canCraft = true;
break;
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ org.gradle.jvmargs=-Xmx2G

enabledPlatforms=fabric,forge

version=3.0.6
version=3.0.7
group=earth.terrarium.chipped

minecraftVersion=1.20.1
Expand Down

0 comments on commit 9764b7f

Please sign in to comment.