Skip to content

Commit

Permalink
1.20.2-pre4
Browse files Browse the repository at this point in the history
  • Loading branch information
modmuss50 committed Sep 13, 2023
1 parent 3bafade commit 109a65e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import org.spongepowered.asm.mixin.injection.Inject;
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;

import net.minecraft.block.BlockState;
import net.minecraft.block.DispenserBlock;
import net.minecraft.block.DropperBlock;
import net.minecraft.block.entity.DispenserBlockEntity;
Expand Down Expand Up @@ -49,7 +50,7 @@ public class DropperBlockMixin {
cancellable = true,
allow = 1
)
public void hookDispense(ServerWorld world, BlockPos pos, CallbackInfo ci) {
public void hookDispense(ServerWorld world, BlockState blockState, BlockPos pos, CallbackInfo ci) {
DispenserBlockEntity dispenser = (DispenserBlockEntity) world.getBlockEntity(pos);
Direction direction = dispenser.getCachedState().get(DispenserBlock.FACING);

Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ org.gradle.jvmargs=-Xmx2560M
org.gradle.parallel=true
fabric.loom.multiProjectOptimisation=true

version=0.88.3
minecraft_version=1.20.2-pre2
version=0.88.4
minecraft_version=1.20.2-pre4
yarn_version=+build.1
loader_version=0.14.22
installer_version=0.11.1
Expand Down Expand Up @@ -58,7 +58,7 @@ fabric-resource-loader-v0-version=0.11.10
fabric-screen-api-v1-version=2.0.10
fabric-screen-handler-api-v1-version=1.3.35
fabric-sound-api-v1-version=1.0.13
fabric-transfer-api-v1-version=3.3.6
fabric-transfer-api-v1-version=3.3.7
fabric-transitive-access-wideners-v1-version=5.0.2
fabric-convention-tags-v1-version=1.5.6
fabric-client-tags-api-v1-version=1.1.3

0 comments on commit 109a65e

Please sign in to comment.