Skip to content

Commit

Permalink
Update to 1.19.3
Browse files Browse the repository at this point in the history
  • Loading branch information
PotatoPresident committed Dec 20, 2022
1 parent 77ada2a commit 0d91f93
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ dependencies {
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"

modImplementation include("me.lucko:fabric-permissions-api:0.1-SNAPSHOT")
modImplementation include("eu.pb4:sgui:1.1.3+1.19.1")
modImplementation include("fr.catcore:server-translations-api:1.4.16+1.19")
modImplementation include("eu.pb4:sgui:1.2.0+1.19.3")
modImplementation include("fr.catcore:server-translations-api:1.4.19+1.19.3")
}

processResources {
Expand Down
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
org.gradle.jvmargs=-Xmx1G
# Fabric Properties
# check these on https://fabricmc.net/develop/
minecraft_version=1.19.1
yarn_mappings=1.19.1+build.1
loader_version=0.14.8
minecraft_version=1.19.3
yarn_mappings=1.19.3+build.3
loader_version=0.14.11
# Mod Properties
mod_version=1.0.9
mod_version=1.0.10
maven_group=us.potatoboy
archives_base_name=headindex
# Dependencies
# check this on https://fabricmc.net/develop/
fabric_version=0.58.5+1.19.1
fabric_version=0.69.1+1.19.3
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ private void processHeadClick(Head head, ClickType type) {
} else {
player.currentScreenHandler.setCursorStack(headStack);
}
} else if (headStack.isItemEqualIgnoreDamage(cursorStack) && ItemStack.areNbtEqual(headStack, cursorStack)) {
} else if (headStack.isItemEqual(cursorStack) && ItemStack.areNbtEqual(headStack, cursorStack)) {
if (type.isLeft) {
cursorStack.increment(1);
} else if (type.isRight) {
Expand Down

0 comments on commit 0d91f93

Please sign in to comment.