Skip to content

Commit

Permalink
Update to 1.21.3
Browse files Browse the repository at this point in the history
I feel like this should noticeably break something, why is this not noticeably breaking anything.
  • Loading branch information
KadTheHunter committed Nov 1, 2024
1 parent a0bf794 commit 692d363
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'fabric-loom' version '1.7-SNAPSHOT'
id 'fabric-loom' version '1.8-SNAPSHOT'
id 'maven-publish'
}

Expand Down
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
org.gradle.jvmargs=-Xmx4G

# Fabric Properties (https://fabricmc.net/versions.html)
minecraft_version=1.21
yarn_mappings=1.21+build.7
loader_version=0.15.11
minecraft_version=1.21.3
yarn_mappings=1.21.3+build.2
loader_version=0.16.9

# Mod Properties (to automatically tag on linux: 'git tag $(grep -oP '^mod_version = \K.*' gradle.properties)')
mod_version = 1.2.5
mod_version = 1.2.6
maven_group = net.clayborn
archives_base_name = accurate-block-placement

# Dependencies
fabric_version=0.100.4+1.21
fabric_version=0.107.0+1.21.3
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.8-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ private void onUpdateTargetedEntityComplete(CallbackInfo info)
}

// if the item we are holding is activatable, let vanilla take over
if((currentItem.getDefaultStack().contains(DataComponentTypes.FOOD) && !(currentItem instanceof AliasedBlockItem)) || doesItemHaveOverriddenUseMethod(currentItem)) {
if((currentItem.getDefaultStack().contains(DataComponentTypes.FOOD)) || doesItemHaveOverriddenUseMethod(currentItem)) {
return;
}

Expand Down

0 comments on commit 692d363

Please sign in to comment.