From a7902b66b544390c828669caf816478932d5e5d8 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Mon, 8 Jan 2024 21:33:20 +0700 Subject: [PATCH] Fix holo sign not marking chunk it is in dirty after setting color --- .../mc/otm/block/entity/decorative/HoloSignBlockEntity.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/block/entity/decorative/HoloSignBlockEntity.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/block/entity/decorative/HoloSignBlockEntity.kt index 445439897..6652a54b5 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/block/entity/decorative/HoloSignBlockEntity.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/block/entity/decorative/HoloSignBlockEntity.kt @@ -36,6 +36,8 @@ class HoloSignBlockEntity(blockPos: BlockPos, blockState: BlockState) : MatteryB if (setByRemote) { markDirtyClientside() + } else { + markDirtyFast() } } }