Skip to content

Commit

Permalink
1.20.4 Update
Browse files Browse the repository at this point in the history
  • Loading branch information
QPCrummer committed Dec 9, 2023
1 parent 9f1ffde commit 3f0cdfd
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import java.nio.charset.StandardCharsets

plugins {
id 'fabric-loom' version '1.3-SNAPSHOT'
id 'fabric-loom' version '1.4-SNAPSHOT'
id 'maven-publish'
id("com.modrinth.minotaur") version "2.8.4"
}
Expand All @@ -26,8 +26,8 @@ dependencies {

// Fabric API. This is technically optional, but you probably want it anyway.
modImplementation("net.fabricmc.fabric-api:fabric-api:${project.fabric_version}")
modImplementation include("eu.pb4:polymer-core:0.6.0-rc.3+1.20.2-rc2")
modImplementation include("xyz.nucleoid:server-translations-api:2.1.0+1.20.2-rc2")
modImplementation include("eu.pb4:polymer-core:0.7.1+1.20.4")
modImplementation include("xyz.nucleoid:server-translations-api:2.2.0+1.20.3-rc1")
}

loom {
Expand Down
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
org.gradle.jvmargs=-Xmx1G
minecraft_version=1.20.2
yarn_mappings=1.20.2+build.1
loader_version=0.14.22
fabric_version=0.89.1+1.20.2
mod_version=1.0.12
minecraft_version=1.20.4
yarn_mappings=1.20.4+build.1
loader_version=0.15.1
fabric_version=0.91.2+1.20.4
mod_version=1.0.13
maven_group=com.github.tatercertified
archives_base_name=fabricautocrafter
modrinth_id=wbqioEpc
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ protected void onTake(int amount) {
@Override
protected void onCrafted(ItemStack stack, int amount) {
super.onCrafted(stack); // from CraftingResultsSlot onCrafted
if (amount > 0) stack.onCraft(this.player.getWorld(), this.player, amount);
if (amount > 0) stack.onCraftByPlayer(this.player.getWorld(), this.player, amount);
if (this.inventory instanceof RecipeUnlocker) ((RecipeUnlocker)this.inventory).unlockLastRecipe(this.player, List.of(stack));
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"depends": {
"fabricloader": "*",
"fabric": "*",
"minecraft": ">=1.20.2",
"minecraft": ">=1.20.3",
"java": ">=17"
}
}

0 comments on commit 3f0cdfd

Please sign in to comment.