diff options
Diffstat (limited to 'src/main/kotlin/features/items/EtherwarpOverlay.kt')
| -rw-r--r-- | src/main/kotlin/features/items/EtherwarpOverlay.kt | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/main/kotlin/features/items/EtherwarpOverlay.kt b/src/main/kotlin/features/items/EtherwarpOverlay.kt index 640c8f5..ba712b3 100644 --- a/src/main/kotlin/features/items/EtherwarpOverlay.kt +++ b/src/main/kotlin/features/items/EtherwarpOverlay.kt @@ -13,19 +13,18 @@ import net.minecraft.util.math.Vec3d import net.minecraft.world.BlockView import moe.nea.firmament.annotations.Subscribe import moe.nea.firmament.events.WorldRenderLastEvent -import moe.nea.firmament.features.FirmamentFeature -import moe.nea.firmament.util.data.ManagedConfig import moe.nea.firmament.util.MC import moe.nea.firmament.util.SBData import moe.nea.firmament.util.data.Config +import moe.nea.firmament.util.data.ManagedConfig import moe.nea.firmament.util.extraAttributes import moe.nea.firmament.util.render.RenderInWorldContext import moe.nea.firmament.util.skyBlockId import moe.nea.firmament.util.skyblock.SkyBlockItems import moe.nea.firmament.util.tr -object EtherwarpOverlay : FirmamentFeature { - override val identifier: String +object EtherwarpOverlay { + val identifier: String get() = "etherwarp-overlay" @Config @@ -41,9 +40,6 @@ object EtherwarpOverlay : FirmamentFeature { var failureText by toggle("failure-text") { false } } - override val config: ManagedConfig - get() = TConfig - enum class EtherwarpResult(val label: Text?, val color: () -> ChromaColour) { SUCCESS(null, TConfig::cubeColour), INTERACTION_BLOCKED( |
