diff options
author | nea <nea@nea.moe> | 2023-05-03 01:39:27 +0200 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-05-03 01:39:27 +0200 |
commit | f844feba1b874a946f020574fee06c5926d042f8 (patch) | |
tree | 8b0cd0303107ff5be1721f1760b82353126170ad /src/main/kotlin/moe/nea/notenoughupdates/features | |
parent | f93df266c60de0567be1c963d0fbc0861bc4f197 (diff) | |
download | Firmament-f844feba1b874a946f020574fee06c5926d042f8.tar.gz Firmament-f844feba1b874a946f020574fee06c5926d042f8.tar.bz2 Firmament-f844feba1b874a946f020574fee06c5926d042f8.zip |
Make proper use of matrixstack for block highlights
Diffstat (limited to 'src/main/kotlin/moe/nea/notenoughupdates/features')
-rw-r--r-- | src/main/kotlin/moe/nea/notenoughupdates/features/world/FairySouls.kt | 2 |
1 files changed, 1 insertions, 1 deletions
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) |