From 450a0a003d687ae16448734ebef25acfb17cdde4 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Mon, 24 Jul 2023 13:25:18 +0200 Subject: Fixed irrelevant spelling stuff --- .../java/at/hannibal2/skyhanni/test/SkyHanniConfigSearchResetCommand.kt | 2 +- .../at/hannibal2/skyhanni/test/command/CopyNearbyParticlesCommand.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/test') diff --git a/src/main/java/at/hannibal2/skyhanni/test/SkyHanniConfigSearchResetCommand.kt b/src/main/java/at/hannibal2/skyhanni/test/SkyHanniConfigSearchResetCommand.kt index 279d58e2c..5d36cdb90 100644 --- a/src/main/java/at/hannibal2/skyhanni/test/SkyHanniConfigSearchResetCommand.kt +++ b/src/main/java/at/hannibal2/skyhanni/test/SkyHanniConfigSearchResetCommand.kt @@ -238,7 +238,7 @@ object SkyHanniConfigSearchResetCommand { if (this is Runnable) return "Runnable" - // we do not use javaClass.simpleName since we want to catch edge cases + // we don't use javaClass.simpleName since we want to catch edge cases val name = javaClass.name return when (name) { "at.hannibal2.skyhanni.config.core.config.Position" -> "Position" diff --git a/src/main/java/at/hannibal2/skyhanni/test/command/CopyNearbyParticlesCommand.kt b/src/main/java/at/hannibal2/skyhanni/test/command/CopyNearbyParticlesCommand.kt index 8e4290434..680f42e6e 100644 --- a/src/main/java/at/hannibal2/skyhanni/test/command/CopyNearbyParticlesCommand.kt +++ b/src/main/java/at/hannibal2/skyhanni/test/command/CopyNearbyParticlesCommand.kt @@ -7,7 +7,7 @@ import net.minecraft.network.play.server.S2APacketParticles import net.minecraftforge.fml.common.eventhandler.EventPriority import net.minecraftforge.fml.common.eventhandler.SubscribeEvent -// note: Each particle is copied anywhere between 1-3 times. Different each time. Should not affect using this for debugging or developing +// Note: Each particle is copied anywhere between 1-3 times. Different each time. Shouldn't affect using this for debugging or developing object CopyNearbyParticlesCommand { private var searchRadius = 0 private var saveNextTick = false -- cgit