From f844feba1b874a946f020574fee06c5926d042f8 Mon Sep 17 00:00:00 2001 From: nea Date: Wed, 3 May 2023 01:39:27 +0200 Subject: Make proper use of matrixstack for block highlights --- src/main/kotlin/moe/nea/notenoughupdates/features/world/FairySouls.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/kotlin/moe/nea/notenoughupdates/features') diff --git a/src/main/kotlin/moe/nea/notenoughupdates/features/world/FairySouls.kt b/src/main/kotlin/moe/nea/notenoughupdates/features/world/FairySouls.kt index b8052a6..d65af26 100644 --- a/src/main/kotlin/moe/nea/notenoughupdates/features/world/FairySouls.kt +++ b/src/main/kotlin/moe/nea/notenoughupdates/features/world/FairySouls.kt @@ -105,7 +105,7 @@ object FairySouls : NEUFeature, } WorldRenderLastEvent.subscribe { if (!TConfig.displaySouls) return@subscribe - renderBlocks(it.camera) { + renderBlocks(it.matrices, it.camera) { color(1F, 1F, 0F, 0.8F) currentMissingSouls.forEach { block(it.blockPos) -- cgit