Skip to content

Commit

Permalink
1.4.43 and 1.17.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gnembon committed Jul 8, 2021
1 parent a6a224b commit 0276a4c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ org.gradle.jvmargs=-Xmx1G

# Fabric Properties
# check these on https://fabricmc.net/use or https://modmuss50.me/fabric.html
minecraft_version=1.17-pre2
yarn_mappings=1.17-pre2+build.5
loader_version=0.11.3
minecraft_version=1.17.1
yarn_mappings=1.17.1+build.1
loader_version=0.11.6
# check available versions on maven for the given minecraft version you are using
carpet_core_version=1.4.39+v210531
carpet_core_version=1.4.43+v210706

# Mod Properties
mod_version = 1.4.39
mod_version = 1.4.43
maven_group = carpet-autocraftingtable
archives_base_name = carpet-autocraftingtable

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class AutoCraftingTableContainer extends CraftingScreenHandler {
public void onContentChanged(Inventory inv) {
if (this.player instanceof ServerPlayerEntity) {
ServerPlayNetworkHandler netHandler = ((ServerPlayerEntity) this.player).networkHandler;
netHandler.sendPacket(new ScreenHandlerSlotUpdateS2CPacket(this.syncId, 0, this.blockEntity.getStack(0)));
netHandler.sendPacket(new ScreenHandlerSlotUpdateS2CPacket(this.syncId, 0, 0, this.blockEntity.getStack(0)));
}
}

Expand Down

0 comments on commit 0276a4c

Please sign in to comment.