diff options
author | hannibal2 <24389977+hannibal002@users.noreply.github.com> | 2024-07-28 10:00:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-28 10:00:59 +0200 |
commit | b2082d1d6008d943ffa2269cbdddb1b4fc72b8ce (patch) | |
tree | 26806bedd65409c2a00b2ad6fef18ed4dd2dee29 /src/main/java/at/hannibal2/skyhanni/features/nether | |
parent | a4ba470eabdea05c3e2770ce56cd3ec9e0687efc (diff) | |
download | skyhanni-b2082d1d6008d943ffa2269cbdddb1b4fc72b8ce.tar.gz skyhanni-b2082d1d6008d943ffa2269cbdddb1b4fc72b8ce.tar.bz2 skyhanni-b2082d1d6008d943ffa2269cbdddb1b4fc72b8ce.zip |
Backend: Change colour (UK) to color (US) (#2258)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/nether')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/nether/SulphurSkitterBox.kt | 4 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/nether/ashfang/AshfangGravityOrbs.kt | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/nether/SulphurSkitterBox.kt b/src/main/java/at/hannibal2/skyhanni/features/nether/SulphurSkitterBox.kt index daed44c07..388e6bf23 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/nether/SulphurSkitterBox.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/nether/SulphurSkitterBox.kt @@ -15,7 +15,7 @@ import at.hannibal2.skyhanni.utils.LocationUtils.distanceToPlayer import at.hannibal2.skyhanni.utils.LorenzUtils.isInIsland import at.hannibal2.skyhanni.utils.RenderUtils import at.hannibal2.skyhanni.utils.RenderUtils.expandBlock -import at.hannibal2.skyhanni.utils.SpecialColour +import at.hannibal2.skyhanni.utils.SpecialColor import at.hannibal2.skyhanni.utils.toLorenzVec import net.minecraft.init.Blocks import net.minecraft.util.AxisAlignedBB @@ -78,7 +78,7 @@ object SulphurSkitterBox { } private fun drawBox(axis: AxisAlignedBB, partialTicks: Float) { - val color = Color(SpecialColour.specialToChromaRGB(config.boxColor), true) + val color = Color(SpecialColor.specialToChromaRGB(config.boxColor), true) when (config.boxType) { SulphurSkitterBoxConfig.BoxType.FULL -> { RenderUtils.drawFilledBoundingBox_nea( diff --git a/src/main/java/at/hannibal2/skyhanni/features/nether/ashfang/AshfangGravityOrbs.kt b/src/main/java/at/hannibal2/skyhanni/features/nether/ashfang/AshfangGravityOrbs.kt index 10c58b485..6a4b02416 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/nether/ashfang/AshfangGravityOrbs.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/nether/ashfang/AshfangGravityOrbs.kt @@ -14,7 +14,7 @@ import at.hannibal2.skyhanni.utils.LocationUtils import at.hannibal2.skyhanni.utils.LorenzUtils import at.hannibal2.skyhanni.utils.RenderUtils import at.hannibal2.skyhanni.utils.RenderUtils.drawString -import at.hannibal2.skyhanni.utils.SpecialColour +import at.hannibal2.skyhanni.utils.SpecialColor import at.hannibal2.skyhanni.utils.getLorenzVec import net.minecraft.entity.item.EntityArmorStand import net.minecraftforge.fml.common.eventhandler.SubscribeEvent @@ -42,7 +42,7 @@ object AshfangGravityOrbs { fun onRenderWorld(event: LorenzRenderWorldEvent) { if (!isEnabled()) return - val color = Color(SpecialColour.specialToChromaRGB(config.color), true) + val color = Color(SpecialColor.specialToChromaRGB(config.color), true) val playerLocation = LocationUtils.playerLocation() for (orb in orbs) { if (orb.isDead) continue |