mirror of
https://github.com/FabricMC/fabric.git
synced 2025-04-21 03:10:54 -04:00
1.20.2-pre4
This commit is contained in:
parent
3bafade3d1
commit
109a65e5af
2 changed files with 5 additions and 4 deletions
fabric-transfer-api-v1/src/main/java/net/fabricmc/fabric/mixin/transfer
gradle.properties
|
@ -21,6 +21,7 @@ import org.spongepowered.asm.mixin.injection.At;
|
|||
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;
|
||||
|
@ -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);
|
||||
|
||||
|
|
|
@ -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
|
||||
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue