aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/features
diff options
context:
space:
mode:
authornea <nea@nea.moe>2023-06-12 00:19:32 +0200
committernea <nea@nea.moe>2023-06-12 00:19:32 +0200
commita74a2fb1d571da6a4a87578f354b18921b01d8d4 (patch)
tree042dfc0104669983864ff5a1c1a59e32bfdbeee4 /src/main/kotlin/moe/nea/firmament/features
parent74e79759bf8888ea08a6d244a50e531aaae20f27 (diff)
downloadFirmament-a74a2fb1d571da6a4a87578f354b18921b01d8d4.tar.gz
Firmament-a74a2fb1d571da6a4a87578f354b18921b01d8d4.tar.bz2
Firmament-a74a2fb1d571da6a4a87578f354b18921b01d8d4.zip
Add lines to world renderer
Diffstat (limited to 'src/main/kotlin/moe/nea/firmament/features')
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/world/FairySouls.kt7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/main/kotlin/moe/nea/firmament/features/world/FairySouls.kt b/src/main/kotlin/moe/nea/firmament/features/world/FairySouls.kt
index 9a04b37..678d626 100644
--- a/src/main/kotlin/moe/nea/firmament/features/world/FairySouls.kt
+++ b/src/main/kotlin/moe/nea/firmament/features/world/FairySouls.kt
@@ -21,15 +21,16 @@ package moe.nea.firmament.features.world
import io.github.moulberry.repo.data.Coordinate
import kotlinx.serialization.Serializable
import kotlinx.serialization.serializer
+import net.minecraft.util.math.Direction
import moe.nea.firmament.events.ServerChatLineReceivedEvent
import moe.nea.firmament.events.SkyblockServerUpdateEvent
import moe.nea.firmament.events.WorldRenderLastEvent
import moe.nea.firmament.features.FirmamentFeature
+import moe.nea.firmament.gui.config.ManagedConfig
import moe.nea.firmament.repo.RepoManager
import moe.nea.firmament.util.MC
import moe.nea.firmament.util.SBData
import moe.nea.firmament.util.blockPos
-import moe.nea.firmament.gui.config.ManagedConfig
import moe.nea.firmament.util.data.ProfileSpecificDataHolder
import moe.nea.firmament.util.render.RenderInWorldContext.Companion.renderInWorld
import moe.nea.firmament.util.unformattedString
@@ -132,6 +133,10 @@ object FairySouls : FirmamentFeature {
currentMissingSouls.forEach {
block(it.blockPos)
}
+ color(1f, 0f, 1f, 1f)
+ currentLocationSouls.forEach {
+ wireframeCube(it.blockPos)
+ }
}
}
}