From 382ab9b0e239ff06f2533cc4a47b90c7039b2445 Mon Sep 17 00:00:00 2001 From: xtex Date: Fri, 28 Jul 2023 19:40:48 +0800 Subject: [PATCH] feat: use PASS for projector --- common/src/main/kotlin/quaedam/projector/ProjectorBlock.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/main/kotlin/quaedam/projector/ProjectorBlock.kt b/common/src/main/kotlin/quaedam/projector/ProjectorBlock.kt index c0c0ec2..3a398ed 100644 --- a/common/src/main/kotlin/quaedam/projector/ProjectorBlock.kt +++ b/common/src/main/kotlin/quaedam/projector/ProjectorBlock.kt @@ -42,7 +42,7 @@ object ProjectorBlock : Block(Properties.of() blockHitResult: BlockHitResult ): InteractionResult { checkUpdate(level, blockPos) - return InteractionResult.SUCCESS + return InteractionResult.PASS } override fun newBlockEntity(pos: BlockPos, state: BlockState) = ProjectorBlockEntity(pos, state)