diff --git a/build.gradle b/build.gradle deleted file mode 100644 index 2877663f..00000000 --- a/build.gradle +++ /dev/null @@ -1,109 +0,0 @@ -//file:noinspection UnnecessaryQualifiedReference -//file:noinspection GroovyAssignabilityCheck - -plugins { - id "dev.architectury.architectury-pack200" version "0.1.3" - id "cc.polyfrost.loom" version "0.10.0.5" - id "net.kyori.blossom" version "1.3.0" - id "java" -} - -version = mod_version -group = "cc.woverflow" -archivesBaseName = mod_name - -blossom { - String className = "src/main/java/cc/woverflow/hytils/HytilsReborn.java" - replaceToken("@VER@", project.version, className) - replaceToken("@NAME@", mod_name, className) - replaceToken("@ID@", mod_id, className) -} - -sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8 -compileJava.options.encoding = 'UTF-8' - -loom { - launchConfigs { - client { - arg("--tweakClass", "cc.polyfrost.oneconfig.loader.stage0.LaunchWrapperTweaker") - property("mixin.debug.export", "true") - } - } - runConfigs { - client { - ideConfigGenerated = true - } - } - forge { - pack200Provider = new dev.architectury.pack200.java.Pack200Adapter() - mixinConfig("mixins.hytils.json") - mixin.defaultRefmapName.set("mixins.hytils.refmap.json") - accessTransformer(file("src/main/resources/hytils_at.cfg")) - } -} - -configurations { - include - implementation.extendsFrom(include) -} - -repositories { - maven { url 'https://repo.polyfrost.cc/releases' } -} - -dependencies { - minecraft("com.mojang:minecraft:1.8.9") - mappings("de.oceanlabs.mcp:mcp_stable:22-1.8.9") - forge("net.minecraftforge:forge:1.8.9-11.15.1.2318-1.8.9") - - compileOnly('cc.polyfrost:oneconfig-1.8.9-forge:0.2.0-alpha+') - include('cc.polyfrost:oneconfig-wrapper-launchwrapper:1.0.0-beta+') - compileOnly('org.spongepowered:mixin:0.7.11-SNAPSHOT') - - modRuntimeOnly("me.djtheredstoner:DevAuth-forge-legacy:1.1.0") -} - -processResources { - // this will ensure that this task is redone when the versions change. - inputs.property "version", version - inputs.property "name", mod_name - inputs.property "id", mod_id - - filesMatching("mcmod.info") { - expand( - "id": mod_id, - "name": mod_name, - "version": version - ) - } - - rename '(.+_at.cfg)', 'META-INF/$1' -} - -sourceSets { - dummy - main { - compileClasspath += dummy.output - output.resourcesDir = java.classesDirectory - } -} - -jar { - dependsOn configurations.include - from(configurations.include.collect { it.isDirectory() ? it : zipTree(it) }) { - def i = 0 - filesMatching("META-INF/NOTICE*") { name = "$name.${i++}" } - filesMatching("META-INF/LICENSE*") { name = "$name.${i++}" } - filesMatching("META-INF/mods.toml") { name = "$name.${i++}" } - filesMatching("LICENSE*") { name = "$name.${i++}" } - } - - manifest.attributes( - 'ModSide': 'CLIENT', - 'ForceLoadAsMod': true, - 'FMLAT': "hytils_at.cfg", - 'MixinConfigs': "mixins.hytils.json", - "TweakOrder": "0", - 'TweakClass': "cc.polyfrost.oneconfig.loader.stage0.LaunchWrapperTweaker" - ) -} diff --git a/build.gradle.kts b/build.gradle.kts new file mode 100644 index 00000000..a727386d --- /dev/null +++ b/build.gradle.kts @@ -0,0 +1,198 @@ +@file:Suppress("UnstableApiUsage", "PropertyName") + +import org.polyfrost.gradle.util.noServerRunConfigs +import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar + +// Adds support for kotlin, and adds the Polyfrost Gradle Toolkit +// which we use to prepare the environment. +plugins { + kotlin("jvm") + id("org.polyfrost.multi-version") + id("org.polyfrost.defaults.repo") + id("org.polyfrost.defaults.java") + id("org.polyfrost.defaults.loom") + id("com.github.johnrengelman.shadow") + id("net.kyori.blossom") version "1.3.1" + id("signing") + java +} + +// Gets the mod name, version and id from the `gradle.properties` file. +val mod_name: String by project +val mod_version: String by project +val mod_id: String by project +val mod_archives_name: String by project + +// Sets up the variables for when we preprocess to other Minecraft versions. +preprocess { + vars.put("MODERN", if (project.platform.mcMinor >= 16) 1 else 0) +} + +// Replaces the variables in `ExampleMod.java` to the ones specified in `gradle.properties`. +blossom { + replaceToken("@VER@", mod_version) + replaceToken("@NAME@", mod_name) + replaceToken("@ID@", mod_id) +} + +// Sets the mod version to the one specified in `gradle.properties`. Make sure to change this following semver! +version = mod_version +// Sets the group, make sure to change this to your own. It can be a website you own backwards or your GitHub username. +// e.g. com.github. or com. +group = "org.polyfrost" + +// Sets the name of the output jar (the one you put in your mods folder and send to other people) +// It outputs all versions of the mod into the `build` directory. +base { + archivesName.set("$mod_archives_name-$platform") +} + +// Configures the Polyfrost Loom, our plugin fork to easily set up the programming environment. +loom { + // Removes the server configs from IntelliJ IDEA, leaving only client runs. + // If you're developing a server-side mod, you can remove this line. + noServerRunConfigs() + + // Adds the tweak class if we are building legacy version of forge as per the documentation (https://docs.polyfrost.org) + if (project.platform.isLegacyForge) { + runConfigs { + "client" { + programArgs("--tweakClass", "cc.polyfrost.oneconfig.loader.stage0.LaunchWrapperTweaker") + property("mixin.debug.export", "true") + } + } + } + // Configures the mixins if we are building for forge, useful for when we are dealing with cross-platform projects. + if (project.platform.isForge) { + forge { + mixinConfig("mixins.hytils.json") + accessTransformer(rootProject.file("src/main/resources/hytils_at.cfg")) + } + } + // Configures the name of the mixin "refmap" using an experimental loom api. + mixin.defaultRefmapName.set("mixins.hytils.refmap.json") +} + +// Creates the shade/shadow configuration, so we can include libraries inside our mod, rather than having to add them separately. +val shade: Configuration by configurations.creating { + configurations.implementation.get().extendsFrom(this) +} + +// Configures the output directory for when building from the `src/resources` directory. +sourceSets { + val dummy by creating + main { + compileClasspath += dummy.output + output.setResourcesDir(java.classesDirectory) + } +} + +// Adds the Polyfrost maven repository so that we can get the libraries necessary to develop the mod. +repositories { + maven("https://repo.polyfrost.org/releases") +} + +// Configures the libraries/dependencies for your mod. +dependencies { + // Adds the OneConfig library, so we can develop with it. + modCompileOnly("cc.polyfrost:oneconfig-$platform:0.2.1-alpha+") + + modRuntimeOnly("me.djtheredstoner:DevAuth-${if (platform.isFabric) "fabric" else if (platform.isLegacyForge) "forge-legacy" else "forge-latest"}:1.1.2") + + // If we are building for legacy forge, includes the launch wrapper with `shade` as we configured earlier. + if (platform.isLegacyForge) { + compileOnly("org.spongepowered:mixin:0.7.11-SNAPSHOT") + shade("cc.polyfrost:oneconfig-wrapper-launchwrapper:1.0.0-beta+") + } +} + +tasks { + // Processes the `src/resources/mcmod.info or fabric.mod.json` and replaces + // the mod id, name and version with the ones in `gradle.properties` + processResources { + inputs.property("id", mod_id) + inputs.property("name", mod_name) + val java = if (project.platform.mcMinor >= 18) { + 17 // If we are playing on version 1.18, set the java version to 17 + } else { + // Else if we are playing on version 1.17, use java 16. + if (project.platform.mcMinor == 17) + 16 + else + 8 // For all previous versions, we **need** java 8 (for Forge support). + } + val compatLevel = "JAVA_${java}" + inputs.property("java", java) + inputs.property("java_level", compatLevel) + inputs.property("version", mod_version) + inputs.property("mcVersionStr", project.platform.mcVersionStr) + filesMatching(listOf("mcmod.info", "mixins.hytils.json", "mods.toml")) { + expand( + mapOf( + "id" to mod_id, + "name" to mod_name, + "java" to java, + "java_level" to compatLevel, + "version" to mod_version, + "mcVersionStr" to project.platform.mcVersionStr + ) + ) + } + filesMatching("fabric.mod.json") { + expand( + mapOf( + "id" to mod_id, + "name" to mod_name, + "java" to java, + "java_level" to compatLevel, + "version" to mod_version, + "mcVersionStr" to project.platform.mcVersionStr.substringBeforeLast(".") + ".x" + ) + ) + } + rename("(.+_at.cfg)", "META-INF/$1") + } + + // Configures the resources to include if we are building for forge or fabric. + withType(Jar::class.java) { + if (project.platform.isFabric) { + exclude("mcmod.info", "mods.toml") + } else { + exclude("fabric.mod.json") + if (project.platform.isLegacyForge) { + exclude("mods.toml") + } else { + exclude("mcmod.info") + } + } + } + + // Configures our shadow/shade configuration, so we can + // include some dependencies within our mod jar file. + named("shadowJar") { + archiveClassifier.set("dev") // TODO: machete gets confused by the `dev` prefix. + configurations = listOf(shade) + duplicatesStrategy = DuplicatesStrategy.EXCLUDE + } + + remapJar { + inputFile.set(shadowJar.get().archiveFile) + archiveClassifier.set("") + } + + jar { + // Sets the jar manifest attributes. + if (platform.isLegacyForge) { + manifest.attributes += mapOf( + "ModSide" to "CLIENT", // We aren't developing a server-side mod, so this is fine. + "ForceLoadAsMod" to true, // We want to load this jar as a mod, so we force Forge to do so. + "TweakOrder" to "0", // Makes sure that the OneConfig launch wrapper is loaded as soon as possible. + "MixinConfigs" to "mixins.hytils.json", // We want to use our mixin configuration, so we specify it here. + "TweakClass" to "cc.polyfrost.oneconfig.loader.stage0.LaunchWrapperTweaker" // Loads the OneConfig launch wrapper. + ) + } + dependsOn(shadowJar) + archiveClassifier.set("") + enabled = false + } +} \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index 8990d8c4..62e33fca 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,11 +1,13 @@ +mod_name = Hytils Reborn +mod_id = hytils-reborn +mod_version = 1.6.0 +# Sets the name of the jar file that you put in your 'mods' folder. +mod_archives_name=Hytils Reborn + +# Gradle Configuration -- DO NOT TOUCH THESE VALUES. +polyfrost.defaults.loom=1 org.gradle.daemon=true org.gradle.parallel=true org.gradle.configureoncommand=true org.gradle.parallel.threads=4 -org.gradle.jvmargs=-Xmx2G - -mod_name = Hytils Reborn -mod_id = hytils-reborn -mod_version = 1.6.0-beta5alpha1 - -loom.platform = forge \ No newline at end of file +org.gradle.jvmargs=-Xmx2G \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 070cb702..e411586a 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/root.gradle.kts b/root.gradle.kts new file mode 100644 index 00000000..2b3f7b02 --- /dev/null +++ b/root.gradle.kts @@ -0,0 +1,9 @@ +plugins { + kotlin("jvm") version "1.8.22" apply false + id("org.polyfrost.multi-version.root") + id("com.github.johnrengelman.shadow") version "7.1.2" apply false +} + +preprocess { + "1.8.9-forge"(10809, "srg") {} +} \ No newline at end of file diff --git a/settings.gradle b/settings.gradle deleted file mode 100644 index 262fc299..00000000 --- a/settings.gradle +++ /dev/null @@ -1,9 +0,0 @@ -pluginManagement { - repositories { - gradlePluginPortal() - maven { url = "https://repo.polyfrost.cc/releases" } - maven { url = "https://maven.architectury.dev/" } - } -} - -rootProject.name = mod_name \ No newline at end of file diff --git a/settings.gradle.kts b/settings.gradle.kts new file mode 100644 index 00000000..aa2a1b64 --- /dev/null +++ b/settings.gradle.kts @@ -0,0 +1,30 @@ +@file:Suppress("PropertyName") + +pluginManagement { + repositories { + gradlePluginPortal() + mavenCentral() + maven("https://repo.polyfrost.org/releases") // Adds the Polyfrost maven repository to get Polyfrost Gradle Toolkit + } + plugins { + val pgtVersion = "0.2.9" // Sets the default versions for Polyfrost Gradle Toolkit + id("org.polyfrost.multi-version.root") version pgtVersion + } +} + +val mod_name: String by settings + +// Configures the root project Gradle name based on the value in `gradle.properties` +rootProject.name = mod_name +rootProject.buildFileName = "root.gradle.kts" + +// Adds all of our build target versions to the classpath if we need to add version-specific code. +listOf( + "1.8.9-forge" +).forEach { version -> + include(":$version") + project(":$version").apply { + projectDir = file("versions/$version") + buildFileName = "../../build.gradle.kts" + } +} \ No newline at end of file diff --git a/src/dummy/java/cc/woverflow/chatting/chat/ChatTab.java b/src/dummy/java/org/polyfrost/chatting/chat/ChatTab.java similarity index 96% rename from src/dummy/java/cc/woverflow/chatting/chat/ChatTab.java rename to src/dummy/java/org/polyfrost/chatting/chat/ChatTab.java index d59425c6..4ff134fc 100644 --- a/src/dummy/java/cc/woverflow/chatting/chat/ChatTab.java +++ b/src/dummy/java/org/polyfrost/chatting/chat/ChatTab.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.chatting.chat; +package org.polyfrost.chatting.chat; public final class ChatTab { public final String getPrefix() { diff --git a/src/dummy/java/cc/woverflow/chatting/chat/ChatTabs.java b/src/dummy/java/org/polyfrost/chatting/chat/ChatTabs.java similarity index 96% rename from src/dummy/java/cc/woverflow/chatting/chat/ChatTabs.java rename to src/dummy/java/org/polyfrost/chatting/chat/ChatTabs.java index 7e609ede..c4d5e846 100644 --- a/src/dummy/java/cc/woverflow/chatting/chat/ChatTabs.java +++ b/src/dummy/java/org/polyfrost/chatting/chat/ChatTabs.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.chatting.chat; +package org.polyfrost.chatting.chat; import java.util.ArrayList; diff --git a/src/dummy/java/cc/woverflow/chatting/config/ChattingConfig.java b/src/dummy/java/org/polyfrost/chatting/config/ChattingConfig.java similarity index 96% rename from src/dummy/java/cc/woverflow/chatting/config/ChattingConfig.java rename to src/dummy/java/org/polyfrost/chatting/config/ChattingConfig.java index 0ea9fb40..dcb65530 100644 --- a/src/dummy/java/cc/woverflow/chatting/config/ChattingConfig.java +++ b/src/dummy/java/org/polyfrost/chatting/config/ChattingConfig.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.chatting.config; +package org.polyfrost.chatting.config; public class ChattingConfig { public static ChattingConfig INSTANCE = new ChattingConfig(); diff --git a/src/main/java/cc/woverflow/hytils/HytilsReborn.java b/src/main/java/org/polyfrost/hytils/HytilsReborn.java similarity index 72% rename from src/main/java/cc/woverflow/hytils/HytilsReborn.java rename to src/main/java/org/polyfrost/hytils/HytilsReborn.java index d698f0ff..46856600 100644 --- a/src/main/java/cc/woverflow/hytils/HytilsReborn.java +++ b/src/main/java/org/polyfrost/hytils/HytilsReborn.java @@ -16,46 +16,47 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils; +package org.polyfrost.hytils; import cc.polyfrost.oneconfig.events.EventManager; import cc.polyfrost.oneconfig.libs.universal.ChatColor; import cc.polyfrost.oneconfig.libs.universal.UChat; import cc.polyfrost.oneconfig.utils.Multithreading; +import cc.polyfrost.oneconfig.utils.Notifications; import cc.polyfrost.oneconfig.utils.commands.CommandManager; -import cc.woverflow.hytils.command.*; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.cache.*; -import cc.woverflow.hytils.handlers.chat.ChatHandler; -import cc.woverflow.hytils.handlers.chat.modules.events.AchievementEvent; -import cc.woverflow.hytils.handlers.chat.modules.events.LevelupEvent; -import cc.woverflow.hytils.handlers.chat.modules.triggers.AutoQueue; -import cc.woverflow.hytils.handlers.chat.modules.triggers.SilentRemoval; -import cc.woverflow.hytils.handlers.game.dropper.DropperHurtSound; -import cc.woverflow.hytils.handlers.game.duels.SumoRenderDistance; -import cc.woverflow.hytils.handlers.game.hardcore.HardcoreStatus; -import cc.woverflow.hytils.handlers.game.housing.HousingMusic; -import cc.woverflow.hytils.handlers.game.miniwalls.MiddleBeaconMiniWalls; -import cc.woverflow.hytils.handlers.game.pit.PitLagReducer; -import cc.woverflow.hytils.handlers.game.titles.CountdownTitles; -import cc.woverflow.hytils.handlers.game.titles.GameEndingTitles; -import cc.woverflow.hytils.handlers.game.titles.GameStartingTitles; -import cc.woverflow.hytils.handlers.game.uhc.MiddleWaypointUHC; -import cc.woverflow.hytils.handlers.general.AutoStart; -import cc.woverflow.hytils.handlers.general.CommandQueue; -import cc.woverflow.hytils.handlers.general.SoundHandler; -import cc.woverflow.hytils.handlers.language.LanguageHandler; -import cc.woverflow.hytils.handlers.lobby.armorstands.ArmorStandHider; -import cc.woverflow.hytils.handlers.lobby.limbo.LimboLimiter; -import cc.woverflow.hytils.handlers.lobby.limbo.LimboPmDing; -import cc.woverflow.hytils.handlers.lobby.limbo.LimboTitle; -import cc.woverflow.hytils.handlers.lobby.mysterybox.MysteryBoxStar; -import cc.woverflow.hytils.handlers.lobby.npc.NPCHandler; -import cc.woverflow.hytils.handlers.lobby.sound.SilentLobby; -import cc.woverflow.hytils.handlers.render.ChestHighlighter; -import cc.woverflow.hytils.util.HypixelAPIUtils; -import cc.woverflow.hytils.util.friends.FriendCache; -import cc.woverflow.hytils.util.ranks.RankType; +import org.polyfrost.hytils.command.*; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.cache.*; +import org.polyfrost.hytils.handlers.chat.ChatHandler; +import org.polyfrost.hytils.handlers.chat.modules.events.AchievementEvent; +import org.polyfrost.hytils.handlers.chat.modules.events.LevelupEvent; +import org.polyfrost.hytils.handlers.chat.modules.triggers.AutoQueue; +import org.polyfrost.hytils.handlers.chat.modules.triggers.SilentRemoval; +import org.polyfrost.hytils.handlers.game.dropper.DropperHurtSound; +import org.polyfrost.hytils.handlers.game.duels.SumoRenderDistance; +import org.polyfrost.hytils.handlers.game.hardcore.HardcoreStatus; +import org.polyfrost.hytils.handlers.game.housing.HousingMusic; +import org.polyfrost.hytils.handlers.game.miniwalls.MiddleBeaconMiniWalls; +import org.polyfrost.hytils.handlers.game.pit.PitLagReducer; +import org.polyfrost.hytils.handlers.game.titles.CountdownTitles; +import org.polyfrost.hytils.handlers.game.titles.GameEndingTitles; +import org.polyfrost.hytils.handlers.game.titles.GameStartingTitles; +import org.polyfrost.hytils.handlers.game.uhc.MiddleWaypointUHC; +import org.polyfrost.hytils.handlers.general.AutoStart; +import org.polyfrost.hytils.handlers.general.CommandQueue; +import org.polyfrost.hytils.handlers.general.SoundHandler; +import org.polyfrost.hytils.handlers.language.LanguageHandler; +import org.polyfrost.hytils.handlers.lobby.armorstands.ArmorStandHider; +import org.polyfrost.hytils.handlers.lobby.limbo.LimboLimiter; +import org.polyfrost.hytils.handlers.lobby.limbo.LimboPmDing; +import org.polyfrost.hytils.handlers.lobby.limbo.LimboTitle; +import org.polyfrost.hytils.handlers.lobby.mysterybox.MysteryBoxStar; +import org.polyfrost.hytils.handlers.lobby.npc.NPCHandler; +import org.polyfrost.hytils.handlers.lobby.sound.SilentLobby; +import org.polyfrost.hytils.handlers.render.ChestHighlighter; +import org.polyfrost.hytils.util.HypixelAPIUtils; +import org.polyfrost.hytils.util.friends.FriendCache; +import org.polyfrost.hytils.util.ranks.RankType; import net.minecraft.client.Minecraft; import net.minecraftforge.common.MinecraftForge; import net.minecraftforge.fml.common.Loader; @@ -136,6 +137,18 @@ public void postInit(FMLPostInitializationEvent event) { } isPatcher = Loader.isModLoaded("patcher"); isChatting = Loader.isModLoaded("chatting"); + if (isChatting) { + try { + Class.forName("org.polyfrost.chatting.chat.ChatTabs"); + } catch (Exception e) { + isChatting = false; + if (HytilsConfig.chattingIntegration) { + HytilsConfig.chattingIntegration = false; + config.save(); + Notifications.INSTANCE.send("Hytils Reborn", "Hytils Reborn has detected Chatting, but it is not the latest version. Please update Chatting to the latest version."); + } + } + } Multithreading.runAsync(() -> rank = HypixelAPIUtils.getRank(Minecraft.getMinecraft().getSession().getUsername())); } diff --git a/src/main/java/cc/woverflow/hytils/command/BlockCommand.java b/src/main/java/org/polyfrost/hytils/command/BlockCommand.java similarity index 95% rename from src/main/java/cc/woverflow/hytils/command/BlockCommand.java rename to src/main/java/org/polyfrost/hytils/command/BlockCommand.java index 75daa51b..77611a25 100644 --- a/src/main/java/cc/woverflow/hytils/command/BlockCommand.java +++ b/src/main/java/org/polyfrost/hytils/command/BlockCommand.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.command; +package org.polyfrost.hytils.command; import cc.polyfrost.oneconfig.libs.universal.ChatColor; import cc.polyfrost.oneconfig.libs.universal.UChat; @@ -24,7 +24,7 @@ import cc.polyfrost.oneconfig.utils.commands.annotations.Description; import cc.polyfrost.oneconfig.utils.commands.annotations.Main; import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; -import cc.woverflow.hytils.HytilsReborn; +import org.polyfrost.hytils.HytilsReborn; import com.mojang.authlib.GameProfile; @Command("block") diff --git a/src/main/java/cc/woverflow/hytils/command/HousingVisitCommand.java b/src/main/java/org/polyfrost/hytils/command/HousingVisitCommand.java similarity index 97% rename from src/main/java/cc/woverflow/hytils/command/HousingVisitCommand.java rename to src/main/java/org/polyfrost/hytils/command/HousingVisitCommand.java index a607512d..0e458101 100644 --- a/src/main/java/cc/woverflow/hytils/command/HousingVisitCommand.java +++ b/src/main/java/org/polyfrost/hytils/command/HousingVisitCommand.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.command; +package org.polyfrost.hytils.command; import cc.polyfrost.oneconfig.libs.universal.ChatColor; import cc.polyfrost.oneconfig.libs.universal.UChat; @@ -27,7 +27,7 @@ import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; import cc.polyfrost.oneconfig.utils.hypixel.LocrawInfo; import cc.polyfrost.oneconfig.utils.hypixel.LocrawUtil; -import cc.woverflow.hytils.HytilsReborn; +import org.polyfrost.hytils.HytilsReborn; import com.mojang.authlib.GameProfile; import net.minecraftforge.common.MinecraftForge; import net.minecraftforge.event.world.WorldEvent; diff --git a/src/main/java/cc/woverflow/hytils/command/HytilsCommand.java b/src/main/java/org/polyfrost/hytils/command/HytilsCommand.java similarity index 94% rename from src/main/java/cc/woverflow/hytils/command/HytilsCommand.java rename to src/main/java/org/polyfrost/hytils/command/HytilsCommand.java index 3d13d812..ff73f6db 100644 --- a/src/main/java/cc/woverflow/hytils/command/HytilsCommand.java +++ b/src/main/java/org/polyfrost/hytils/command/HytilsCommand.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.command; +package org.polyfrost.hytils.command; import cc.polyfrost.oneconfig.utils.Multithreading; import cc.polyfrost.oneconfig.utils.Notifications; @@ -25,12 +25,12 @@ import cc.polyfrost.oneconfig.utils.commands.annotations.Description; import cc.polyfrost.oneconfig.utils.commands.annotations.Main; import cc.polyfrost.oneconfig.utils.commands.annotations.SubCommand; -import cc.woverflow.hytils.HytilsReborn; -import cc.woverflow.hytils.command.parser.GEXPType; -import cc.woverflow.hytils.command.parser.GEXPTypeParser; -import cc.woverflow.hytils.command.parser.WinstreakType; -import cc.woverflow.hytils.command.parser.WinstreakTypeParser; -import cc.woverflow.hytils.util.HypixelAPIUtils; +import org.polyfrost.hytils.HytilsReborn; +import org.polyfrost.hytils.command.parser.GEXPType; +import org.polyfrost.hytils.command.parser.GEXPTypeParser; +import org.polyfrost.hytils.command.parser.WinstreakType; +import org.polyfrost.hytils.command.parser.WinstreakTypeParser; +import org.polyfrost.hytils.util.HypixelAPIUtils; import com.mojang.authlib.GameProfile; import org.jetbrains.annotations.Nullable; diff --git a/src/main/java/cc/woverflow/hytils/command/IgnoreTemporaryCommand.java b/src/main/java/org/polyfrost/hytils/command/IgnoreTemporaryCommand.java similarity index 99% rename from src/main/java/cc/woverflow/hytils/command/IgnoreTemporaryCommand.java rename to src/main/java/org/polyfrost/hytils/command/IgnoreTemporaryCommand.java index 780d893d..c95d9994 100644 --- a/src/main/java/cc/woverflow/hytils/command/IgnoreTemporaryCommand.java +++ b/src/main/java/org/polyfrost/hytils/command/IgnoreTemporaryCommand.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.command; +package org.polyfrost.hytils.command; import cc.polyfrost.oneconfig.config.core.ConfigUtils; import cc.polyfrost.oneconfig.libs.universal.UChat; diff --git a/src/main/java/cc/woverflow/hytils/command/LimboCommand.java b/src/main/java/org/polyfrost/hytils/command/LimboCommand.java similarity index 97% rename from src/main/java/cc/woverflow/hytils/command/LimboCommand.java rename to src/main/java/org/polyfrost/hytils/command/LimboCommand.java index 5a42d3c7..add90c04 100644 --- a/src/main/java/cc/woverflow/hytils/command/LimboCommand.java +++ b/src/main/java/org/polyfrost/hytils/command/LimboCommand.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.command; +package org.polyfrost.hytils.command; import cc.polyfrost.oneconfig.libs.universal.ChatColor; import cc.polyfrost.oneconfig.libs.universal.UChat; diff --git a/src/main/java/cc/woverflow/hytils/command/PlayCommand.java b/src/main/java/org/polyfrost/hytils/command/PlayCommand.java similarity index 92% rename from src/main/java/cc/woverflow/hytils/command/PlayCommand.java rename to src/main/java/org/polyfrost/hytils/command/PlayCommand.java index 89bbfc84..d203a159 100644 --- a/src/main/java/cc/woverflow/hytils/command/PlayCommand.java +++ b/src/main/java/org/polyfrost/hytils/command/PlayCommand.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.command; +package org.polyfrost.hytils.command; import cc.polyfrost.oneconfig.libs.universal.ChatColor; @@ -27,11 +27,11 @@ import cc.polyfrost.oneconfig.utils.commands.annotations.Command; import cc.polyfrost.oneconfig.utils.commands.annotations.Main; import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; -import cc.woverflow.hytils.HytilsReborn; -import cc.woverflow.hytils.command.parser.GameName; -import cc.woverflow.hytils.command.parser.GameNameParser; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.lobby.limbo.LimboLimiter; +import org.polyfrost.hytils.HytilsReborn; +import org.polyfrost.hytils.command.parser.GameName; +import org.polyfrost.hytils.command.parser.GameNameParser; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.lobby.limbo.LimboLimiter; import com.google.gson.Gson; import com.google.gson.JsonSyntaxException; import com.google.gson.reflect.TypeToken; diff --git a/src/main/java/cc/woverflow/hytils/command/RequeueCommand.java b/src/main/java/org/polyfrost/hytils/command/RequeueCommand.java similarity index 93% rename from src/main/java/cc/woverflow/hytils/command/RequeueCommand.java rename to src/main/java/org/polyfrost/hytils/command/RequeueCommand.java index 351d0463..10d09ca5 100644 --- a/src/main/java/cc/woverflow/hytils/command/RequeueCommand.java +++ b/src/main/java/org/polyfrost/hytils/command/RequeueCommand.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.command; +package org.polyfrost.hytils.command; import cc.polyfrost.oneconfig.libs.universal.ChatColor; import cc.polyfrost.oneconfig.libs.universal.UChat; @@ -25,10 +25,10 @@ import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; import cc.polyfrost.oneconfig.utils.hypixel.LocrawInfo; import cc.polyfrost.oneconfig.utils.hypixel.LocrawUtil; -import cc.woverflow.hytils.HytilsReborn; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.cache.LocrawGamesHandler; -import cc.woverflow.hytils.handlers.lobby.limbo.LimboLimiter; +import org.polyfrost.hytils.HytilsReborn; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.cache.LocrawGamesHandler; +import org.polyfrost.hytils.handlers.lobby.limbo.LimboLimiter; @Command(value = "requeue", aliases = "rq") public class RequeueCommand { diff --git a/src/main/java/cc/woverflow/hytils/command/SilentRemoveCommand.java b/src/main/java/org/polyfrost/hytils/command/SilentRemoveCommand.java similarity index 95% rename from src/main/java/cc/woverflow/hytils/command/SilentRemoveCommand.java rename to src/main/java/org/polyfrost/hytils/command/SilentRemoveCommand.java index 002d0aed..ede056b4 100644 --- a/src/main/java/cc/woverflow/hytils/command/SilentRemoveCommand.java +++ b/src/main/java/org/polyfrost/hytils/command/SilentRemoveCommand.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.command; +package org.polyfrost.hytils.command; import cc.polyfrost.oneconfig.libs.universal.ChatColor; import cc.polyfrost.oneconfig.libs.universal.UChat; @@ -24,7 +24,7 @@ import cc.polyfrost.oneconfig.utils.commands.annotations.Description; import cc.polyfrost.oneconfig.utils.commands.annotations.Main; import cc.polyfrost.oneconfig.utils.commands.annotations.SubCommand; -import cc.woverflow.hytils.handlers.chat.modules.triggers.SilentRemoval; +import org.polyfrost.hytils.handlers.chat.modules.triggers.SilentRemoval; import com.mojang.authlib.GameProfile; import java.util.Set; diff --git a/src/main/java/cc/woverflow/hytils/command/SkyblockVisitCommand.java b/src/main/java/org/polyfrost/hytils/command/SkyblockVisitCommand.java similarity index 97% rename from src/main/java/cc/woverflow/hytils/command/SkyblockVisitCommand.java rename to src/main/java/org/polyfrost/hytils/command/SkyblockVisitCommand.java index 012a0699..ff4a575b 100644 --- a/src/main/java/cc/woverflow/hytils/command/SkyblockVisitCommand.java +++ b/src/main/java/org/polyfrost/hytils/command/SkyblockVisitCommand.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.command; +package org.polyfrost.hytils.command; import cc.polyfrost.oneconfig.libs.universal.ChatColor; import cc.polyfrost.oneconfig.libs.universal.UChat; @@ -27,7 +27,7 @@ import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; import cc.polyfrost.oneconfig.utils.hypixel.LocrawInfo; import cc.polyfrost.oneconfig.utils.hypixel.LocrawUtil; -import cc.woverflow.hytils.HytilsReborn; +import org.polyfrost.hytils.HytilsReborn; import com.mojang.authlib.GameProfile; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.common.MinecraftForge; diff --git a/src/main/java/cc/woverflow/hytils/command/UnblockCommand.java b/src/main/java/org/polyfrost/hytils/command/UnblockCommand.java similarity index 95% rename from src/main/java/cc/woverflow/hytils/command/UnblockCommand.java rename to src/main/java/org/polyfrost/hytils/command/UnblockCommand.java index 221e2632..118c1fd3 100644 --- a/src/main/java/cc/woverflow/hytils/command/UnblockCommand.java +++ b/src/main/java/org/polyfrost/hytils/command/UnblockCommand.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.command; +package org.polyfrost.hytils.command; import cc.polyfrost.oneconfig.libs.universal.ChatColor; import cc.polyfrost.oneconfig.libs.universal.UChat; @@ -24,7 +24,7 @@ import cc.polyfrost.oneconfig.utils.commands.annotations.Description; import cc.polyfrost.oneconfig.utils.commands.annotations.Main; import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; -import cc.woverflow.hytils.HytilsReborn; +import org.polyfrost.hytils.HytilsReborn; import com.mojang.authlib.GameProfile; @Command("unblock") diff --git a/src/main/java/cc/woverflow/hytils/command/parser/GEXPType.java b/src/main/java/org/polyfrost/hytils/command/parser/GEXPType.java similarity index 94% rename from src/main/java/cc/woverflow/hytils/command/parser/GEXPType.java rename to src/main/java/org/polyfrost/hytils/command/parser/GEXPType.java index 0af28672..c28bd009 100644 --- a/src/main/java/cc/woverflow/hytils/command/parser/GEXPType.java +++ b/src/main/java/org/polyfrost/hytils/command/parser/GEXPType.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.command.parser; +package org.polyfrost.hytils.command.parser; public enum GEXPType { DAILY, WEEKLY diff --git a/src/main/java/cc/woverflow/hytils/command/parser/GEXPTypeParser.java b/src/main/java/org/polyfrost/hytils/command/parser/GEXPTypeParser.java similarity index 97% rename from src/main/java/cc/woverflow/hytils/command/parser/GEXPTypeParser.java rename to src/main/java/org/polyfrost/hytils/command/parser/GEXPTypeParser.java index cfc71097..303eea98 100644 --- a/src/main/java/cc/woverflow/hytils/command/parser/GEXPTypeParser.java +++ b/src/main/java/org/polyfrost/hytils/command/parser/GEXPTypeParser.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.command.parser; +package org.polyfrost.hytils.command.parser; import cc.polyfrost.oneconfig.utils.commands.arguments.ArgumentParser; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/command/parser/GameName.java b/src/main/java/org/polyfrost/hytils/command/parser/GameName.java similarity index 95% rename from src/main/java/cc/woverflow/hytils/command/parser/GameName.java rename to src/main/java/org/polyfrost/hytils/command/parser/GameName.java index 09551982..030e4241 100644 --- a/src/main/java/cc/woverflow/hytils/command/parser/GameName.java +++ b/src/main/java/org/polyfrost/hytils/command/parser/GameName.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.command.parser; +package org.polyfrost.hytils.command.parser; public class GameName { public final String name; diff --git a/src/main/java/cc/woverflow/hytils/command/parser/GameNameParser.java b/src/main/java/org/polyfrost/hytils/command/parser/GameNameParser.java similarity index 95% rename from src/main/java/cc/woverflow/hytils/command/parser/GameNameParser.java rename to src/main/java/org/polyfrost/hytils/command/parser/GameNameParser.java index 8c2cd610..4ba93599 100644 --- a/src/main/java/cc/woverflow/hytils/command/parser/GameNameParser.java +++ b/src/main/java/org/polyfrost/hytils/command/parser/GameNameParser.java @@ -16,11 +16,11 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.command.parser; +package org.polyfrost.hytils.command.parser; import cc.polyfrost.oneconfig.utils.commands.arguments.ArgumentParser; import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; -import cc.woverflow.hytils.config.HytilsConfig; +import org.polyfrost.hytils.config.HytilsConfig; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; diff --git a/src/main/java/cc/woverflow/hytils/command/parser/WinstreakType.java b/src/main/java/org/polyfrost/hytils/command/parser/WinstreakType.java similarity index 94% rename from src/main/java/cc/woverflow/hytils/command/parser/WinstreakType.java rename to src/main/java/org/polyfrost/hytils/command/parser/WinstreakType.java index 12c73565..13a6f9ef 100644 --- a/src/main/java/cc/woverflow/hytils/command/parser/WinstreakType.java +++ b/src/main/java/org/polyfrost/hytils/command/parser/WinstreakType.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.command.parser; +package org.polyfrost.hytils.command.parser; public enum WinstreakType { BEDWARS, SKYWARS, DUELS diff --git a/src/main/java/cc/woverflow/hytils/command/parser/WinstreakTypeParser.java b/src/main/java/org/polyfrost/hytils/command/parser/WinstreakTypeParser.java similarity index 97% rename from src/main/java/cc/woverflow/hytils/command/parser/WinstreakTypeParser.java rename to src/main/java/org/polyfrost/hytils/command/parser/WinstreakTypeParser.java index 763848f2..3e472fa0 100644 --- a/src/main/java/cc/woverflow/hytils/command/parser/WinstreakTypeParser.java +++ b/src/main/java/org/polyfrost/hytils/command/parser/WinstreakTypeParser.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.command.parser; +package org.polyfrost.hytils.command.parser; import cc.polyfrost.oneconfig.utils.commands.arguments.ArgumentParser; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/config/BlockHighlightConfig.java b/src/main/java/org/polyfrost/hytils/config/BlockHighlightConfig.java similarity index 99% rename from src/main/java/cc/woverflow/hytils/config/BlockHighlightConfig.java rename to src/main/java/org/polyfrost/hytils/config/BlockHighlightConfig.java index f4c2fec7..934b9e31 100644 --- a/src/main/java/cc/woverflow/hytils/config/BlockHighlightConfig.java +++ b/src/main/java/org/polyfrost/hytils/config/BlockHighlightConfig.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.config; +package org.polyfrost.hytils.config; import cc.polyfrost.oneconfig.config.annotations.Color; import cc.polyfrost.oneconfig.config.core.OneColor; diff --git a/src/main/java/cc/woverflow/hytils/config/HytilsConfig.java b/src/main/java/org/polyfrost/hytils/config/HytilsConfig.java similarity index 99% rename from src/main/java/cc/woverflow/hytils/config/HytilsConfig.java rename to src/main/java/org/polyfrost/hytils/config/HytilsConfig.java index 62b5cb72..08f888f4 100644 --- a/src/main/java/cc/woverflow/hytils/config/HytilsConfig.java +++ b/src/main/java/org/polyfrost/hytils/config/HytilsConfig.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.config; +package org.polyfrost.hytils.config; import cc.polyfrost.oneconfig.config.Config; import cc.polyfrost.oneconfig.config.annotations.*; @@ -26,9 +26,9 @@ import cc.polyfrost.oneconfig.config.data.ModType; import cc.polyfrost.oneconfig.config.data.PageLocation; import cc.polyfrost.oneconfig.config.migration.VigilanceMigrator; -import cc.woverflow.hytils.HytilsReborn; -import cc.woverflow.hytils.handlers.chat.modules.modifiers.GameStartCompactor; -import cc.woverflow.hytils.util.DarkColorUtils; +import org.polyfrost.hytils.HytilsReborn; +import org.polyfrost.hytils.handlers.chat.modules.modifiers.GameStartCompactor; +import org.polyfrost.hytils.util.DarkColorUtils; import com.google.common.collect.Lists; import net.minecraft.client.Minecraft; import org.apache.commons.io.FileUtils; diff --git a/src/main/java/cc/woverflow/hytils/events/HypixelAchievementEvent.java b/src/main/java/org/polyfrost/hytils/events/HypixelAchievementEvent.java similarity index 96% rename from src/main/java/cc/woverflow/hytils/events/HypixelAchievementEvent.java rename to src/main/java/org/polyfrost/hytils/events/HypixelAchievementEvent.java index bc0e6673..868e00fa 100644 --- a/src/main/java/cc/woverflow/hytils/events/HypixelAchievementEvent.java +++ b/src/main/java/org/polyfrost/hytils/events/HypixelAchievementEvent.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.events; +package org.polyfrost.hytils.events; import net.minecraftforge.fml.common.eventhandler.Event; diff --git a/src/main/java/cc/woverflow/hytils/events/HypixelLevelupEvent.java b/src/main/java/org/polyfrost/hytils/events/HypixelLevelupEvent.java similarity index 96% rename from src/main/java/cc/woverflow/hytils/events/HypixelLevelupEvent.java rename to src/main/java/org/polyfrost/hytils/events/HypixelLevelupEvent.java index 0ac37c20..f04f3dcd 100644 --- a/src/main/java/cc/woverflow/hytils/events/HypixelLevelupEvent.java +++ b/src/main/java/org/polyfrost/hytils/events/HypixelLevelupEvent.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.events; +package org.polyfrost.hytils.events; import net.minecraftforge.fml.common.eventhandler.Event; diff --git a/src/main/java/cc/woverflow/hytils/events/TitleEvent.java b/src/main/java/org/polyfrost/hytils/events/TitleEvent.java similarity index 97% rename from src/main/java/cc/woverflow/hytils/events/TitleEvent.java rename to src/main/java/org/polyfrost/hytils/events/TitleEvent.java index 6aae68e9..d6b56097 100644 --- a/src/main/java/cc/woverflow/hytils/events/TitleEvent.java +++ b/src/main/java/org/polyfrost/hytils/events/TitleEvent.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.events; +package org.polyfrost.hytils.events; import net.minecraftforge.fml.common.eventhandler.Cancelable; import net.minecraftforge.fml.common.eventhandler.Event; diff --git a/src/main/java/cc/woverflow/hytils/forge/HytilsMixinPlugin.java b/src/main/java/org/polyfrost/hytils/forge/HytilsMixinPlugin.java similarity index 97% rename from src/main/java/cc/woverflow/hytils/forge/HytilsMixinPlugin.java rename to src/main/java/org/polyfrost/hytils/forge/HytilsMixinPlugin.java index f8b00e4d..2535e011 100644 --- a/src/main/java/cc/woverflow/hytils/forge/HytilsMixinPlugin.java +++ b/src/main/java/org/polyfrost/hytils/forge/HytilsMixinPlugin.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.forge; +package org.polyfrost.hytils.forge; import net.minecraftforge.fml.common.asm.transformers.deobf.FMLDeobfuscatingRemapper; @@ -127,7 +127,7 @@ private InsnList modifyName() { InsnList list = new InsnList(); list.add(new VarInsnNode(Opcodes.ALOAD, 1)); list.add(new MethodInsnNode(Opcodes.INVOKESTATIC, - "cc/woverflow/hytils/handlers/lobby/tab/TabChanger", + "org/polyfrost/hytils/handlers/lobby/tab/TabChanger", "modifyName", "(Ljava/lang/String;Lnet/minecraft/client/network/NetworkPlayerInfo;)Ljava/lang/String;", false)); @@ -138,7 +138,7 @@ private InsnList shouldRenderPlayerHead(LabelNode label) { InsnList list = new InsnList(); list.add(new VarInsnNode(Opcodes.ALOAD, 24)); list.add(new MethodInsnNode(Opcodes.INVOKESTATIC, - "cc/woverflow/hytils/handlers/lobby/tab/TabChanger", + "org/polyfrost/hytils/handlers/lobby/tab/TabChanger", "shouldRenderPlayerHead", "(Lnet/minecraft/client/network/NetworkPlayerInfo;)Z", false)); diff --git a/src/main/java/cc/woverflow/hytils/handlers/cache/ArmorStandHandler.java b/src/main/java/org/polyfrost/hytils/handlers/cache/ArmorStandHandler.java similarity index 97% rename from src/main/java/cc/woverflow/hytils/handlers/cache/ArmorStandHandler.java rename to src/main/java/org/polyfrost/hytils/handlers/cache/ArmorStandHandler.java index afff071a..b57a0057 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/cache/ArmorStandHandler.java +++ b/src/main/java/org/polyfrost/hytils/handlers/cache/ArmorStandHandler.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.cache; +package org.polyfrost.hytils.handlers.cache; import cc.polyfrost.oneconfig.utils.Multithreading; import cc.polyfrost.oneconfig.utils.NetworkUtils; diff --git a/src/main/java/cc/woverflow/hytils/handlers/cache/BedLocationHandler.java b/src/main/java/org/polyfrost/hytils/handlers/cache/BedLocationHandler.java similarity index 99% rename from src/main/java/cc/woverflow/hytils/handlers/cache/BedLocationHandler.java rename to src/main/java/org/polyfrost/hytils/handlers/cache/BedLocationHandler.java index 7908d988..7e96d486 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/cache/BedLocationHandler.java +++ b/src/main/java/org/polyfrost/hytils/handlers/cache/BedLocationHandler.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.cache; +package org.polyfrost.hytils.handlers.cache; import cc.polyfrost.oneconfig.events.EventManager; import cc.polyfrost.oneconfig.events.event.LocrawEvent; diff --git a/src/main/java/cc/woverflow/hytils/handlers/cache/CosmeticsHandler.java b/src/main/java/org/polyfrost/hytils/handlers/cache/CosmeticsHandler.java similarity index 97% rename from src/main/java/cc/woverflow/hytils/handlers/cache/CosmeticsHandler.java rename to src/main/java/org/polyfrost/hytils/handlers/cache/CosmeticsHandler.java index 647a034b..b6391db6 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/cache/CosmeticsHandler.java +++ b/src/main/java/org/polyfrost/hytils/handlers/cache/CosmeticsHandler.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.cache; +package org.polyfrost.hytils.handlers.cache; import cc.polyfrost.oneconfig.utils.Multithreading; import cc.polyfrost.oneconfig.utils.NetworkUtils; diff --git a/src/main/java/cc/woverflow/hytils/handlers/cache/HeightHandler.java b/src/main/java/org/polyfrost/hytils/handlers/cache/HeightHandler.java similarity index 98% rename from src/main/java/cc/woverflow/hytils/handlers/cache/HeightHandler.java rename to src/main/java/org/polyfrost/hytils/handlers/cache/HeightHandler.java index 3f414b5d..e52b080d 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/cache/HeightHandler.java +++ b/src/main/java/org/polyfrost/hytils/handlers/cache/HeightHandler.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.cache; +package org.polyfrost.hytils.handlers.cache; import cc.polyfrost.oneconfig.events.event.LocrawEvent; import cc.polyfrost.oneconfig.events.event.WorldLoadEvent; @@ -27,7 +27,7 @@ import cc.polyfrost.oneconfig.utils.NetworkUtils; import cc.polyfrost.oneconfig.utils.hypixel.LocrawInfo; import cc.polyfrost.oneconfig.utils.hypixel.LocrawUtil; -import cc.woverflow.hytils.HytilsReborn; +import org.polyfrost.hytils.HytilsReborn; import com.google.gson.JsonObject; import java.util.Locale; diff --git a/src/main/java/cc/woverflow/hytils/handlers/cache/LocrawGamesHandler.java b/src/main/java/org/polyfrost/hytils/handlers/cache/LocrawGamesHandler.java similarity index 95% rename from src/main/java/cc/woverflow/hytils/handlers/cache/LocrawGamesHandler.java rename to src/main/java/org/polyfrost/hytils/handlers/cache/LocrawGamesHandler.java index db05f5f9..73b6ad88 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/cache/LocrawGamesHandler.java +++ b/src/main/java/org/polyfrost/hytils/handlers/cache/LocrawGamesHandler.java @@ -16,11 +16,11 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.cache; +package org.polyfrost.hytils.handlers.cache; import cc.polyfrost.oneconfig.utils.Multithreading; import cc.polyfrost.oneconfig.utils.NetworkUtils; -import cc.woverflow.hytils.HytilsReborn; +import org.polyfrost.hytils.HytilsReborn; import com.google.gson.Gson; import com.google.gson.JsonSyntaxException; import com.google.gson.reflect.TypeToken; diff --git a/src/main/java/cc/woverflow/hytils/handlers/cache/PatternHandler.java b/src/main/java/org/polyfrost/hytils/handlers/cache/PatternHandler.java similarity index 96% rename from src/main/java/cc/woverflow/hytils/handlers/cache/PatternHandler.java rename to src/main/java/org/polyfrost/hytils/handlers/cache/PatternHandler.java index 9016b5b4..74278a77 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/cache/PatternHandler.java +++ b/src/main/java/org/polyfrost/hytils/handlers/cache/PatternHandler.java @@ -16,12 +16,12 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.cache; +package org.polyfrost.hytils.handlers.cache; import cc.polyfrost.oneconfig.utils.JsonUtils; import cc.polyfrost.oneconfig.utils.Multithreading; import cc.polyfrost.oneconfig.utils.NetworkUtils; -import cc.woverflow.hytils.HytilsReborn; +import org.polyfrost.hytils.HytilsReborn; import com.google.gson.JsonElement; import com.google.gson.JsonObject; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/ChatHandler.java b/src/main/java/org/polyfrost/hytils/handlers/chat/ChatHandler.java similarity index 92% rename from src/main/java/cc/woverflow/hytils/handlers/chat/ChatHandler.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/ChatHandler.java index eeba6e7d..8559e245 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/ChatHandler.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/ChatHandler.java @@ -16,18 +16,18 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat; +package org.polyfrost.hytils.handlers.chat; import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; -import cc.woverflow.hytils.HytilsReborn; -import cc.woverflow.hytils.handlers.chat.modules.blockers.*; -import cc.woverflow.hytils.handlers.chat.modules.events.AchievementEvent; -import cc.woverflow.hytils.handlers.chat.modules.events.LevelupEvent; -import cc.woverflow.hytils.handlers.chat.modules.modifiers.DefaultChatRestyler; -import cc.woverflow.hytils.handlers.chat.modules.modifiers.GameStartCompactor; -import cc.woverflow.hytils.handlers.chat.modules.modifiers.WhiteChat; -import cc.woverflow.hytils.handlers.chat.modules.modifiers.WhitePrivateMessages; -import cc.woverflow.hytils.handlers.chat.modules.triggers.*; +import org.polyfrost.hytils.HytilsReborn; +import org.polyfrost.hytils.handlers.chat.modules.blockers.*; +import org.polyfrost.hytils.handlers.chat.modules.events.AchievementEvent; +import org.polyfrost.hytils.handlers.chat.modules.events.LevelupEvent; +import org.polyfrost.hytils.handlers.chat.modules.modifiers.DefaultChatRestyler; +import org.polyfrost.hytils.handlers.chat.modules.modifiers.GameStartCompactor; +import org.polyfrost.hytils.handlers.chat.modules.modifiers.WhiteChat; +import org.polyfrost.hytils.handlers.chat.modules.modifiers.WhitePrivateMessages; +import org.polyfrost.hytils.handlers.chat.modules.triggers.*; import net.minecraft.util.IChatComponent; import net.minecraftforge.client.event.ClientChatReceivedEvent; import net.minecraftforge.event.world.WorldEvent; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/ChatModule.java b/src/main/java/org/polyfrost/hytils/handlers/chat/ChatModule.java similarity index 95% rename from src/main/java/cc/woverflow/hytils/handlers/chat/ChatModule.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/ChatModule.java index e6ab7421..91b76c39 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/ChatModule.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/ChatModule.java @@ -16,14 +16,14 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat; +package org.polyfrost.hytils.handlers.chat; import cc.polyfrost.oneconfig.libs.universal.ChatColor; import cc.polyfrost.oneconfig.utils.hypixel.LocrawInfo; import cc.polyfrost.oneconfig.utils.hypixel.LocrawUtil; -import cc.woverflow.hytils.HytilsReborn; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.language.LanguageData; +import org.polyfrost.hytils.HytilsReborn; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.language.LanguageData; import net.minecraft.util.ChatComponentText; import net.minecraft.util.EnumChatFormatting; import net.minecraft.util.IChatComponent; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/ChatReceiveModule.java b/src/main/java/org/polyfrost/hytils/handlers/chat/ChatReceiveModule.java similarity index 97% rename from src/main/java/cc/woverflow/hytils/handlers/chat/ChatReceiveModule.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/ChatReceiveModule.java index d8d05a5f..ddac9a0f 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/ChatReceiveModule.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/ChatReceiveModule.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat; +package org.polyfrost.hytils.handlers.chat; import net.minecraftforge.client.event.ClientChatReceivedEvent; import net.minecraftforge.common.MinecraftForge; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/ChatReceiveResetModule.java b/src/main/java/org/polyfrost/hytils/handlers/chat/ChatReceiveResetModule.java similarity index 95% rename from src/main/java/cc/woverflow/hytils/handlers/chat/ChatReceiveResetModule.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/ChatReceiveResetModule.java index 9548c394..8ad69749 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/ChatReceiveResetModule.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/ChatReceiveResetModule.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat; +package org.polyfrost.hytils.handlers.chat; public interface ChatReceiveResetModule extends ChatReceiveModule { diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/ChatSendModule.java b/src/main/java/org/polyfrost/hytils/handlers/chat/ChatSendModule.java similarity index 97% rename from src/main/java/cc/woverflow/hytils/handlers/chat/ChatSendModule.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/ChatSendModule.java index d2b26d7c..fc20afb0 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/ChatSendModule.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/ChatSendModule.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat; +package org.polyfrost.hytils.handlers.chat; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/AdBlocker.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/AdBlocker.java similarity index 94% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/AdBlocker.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/AdBlocker.java index be5d5d7a..3cc1d050 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/AdBlocker.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/AdBlocker.java @@ -16,11 +16,11 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.blockers; +package org.polyfrost.hytils.handlers.chat.modules.blockers; import cc.polyfrost.oneconfig.utils.hypixel.LocrawUtil; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.client.Minecraft; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/AntiGL.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/AntiGL.java similarity index 92% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/AntiGL.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/AntiGL.java index 01fc4b17..9fc71a5c 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/AntiGL.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/AntiGL.java @@ -16,11 +16,11 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.blockers; +package org.polyfrost.hytils.handlers.chat.modules.blockers; import cc.polyfrost.oneconfig.utils.hypixel.LocrawUtil; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.client.Minecraft; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/BedwarsAdvertisementsRemover.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/BedwarsAdvertisementsRemover.java similarity index 92% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/BedwarsAdvertisementsRemover.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/BedwarsAdvertisementsRemover.java index 5d315a85..32718d22 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/BedwarsAdvertisementsRemover.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/BedwarsAdvertisementsRemover.java @@ -16,12 +16,12 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.blockers; +package org.polyfrost.hytils.handlers.chat.modules.blockers; import cc.polyfrost.oneconfig.utils.hypixel.LocrawInfo; import cc.polyfrost.oneconfig.utils.hypixel.LocrawUtil; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.client.Minecraft; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/BridgeOwnGoalDeathRemover.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/BridgeOwnGoalDeathRemover.java similarity index 89% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/BridgeOwnGoalDeathRemover.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/BridgeOwnGoalDeathRemover.java index 5cb18b3f..074547bd 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/BridgeOwnGoalDeathRemover.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/BridgeOwnGoalDeathRemover.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.blockers; +package org.polyfrost.hytils.handlers.chat.modules.blockers; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/ConnectedMessage.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/ConnectedMessage.java similarity index 89% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/ConnectedMessage.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/ConnectedMessage.java index 529ef79d..7e915fe5 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/ConnectedMessage.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/ConnectedMessage.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.blockers; +package org.polyfrost.hytils.handlers.chat.modules.blockers; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/ConnectionStatusRemover.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/ConnectionStatusRemover.java similarity index 89% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/ConnectionStatusRemover.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/ConnectionStatusRemover.java index 15a9e883..a7c4d10a 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/ConnectionStatusRemover.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/ConnectionStatusRemover.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.blockers; +package org.polyfrost.hytils.handlers.chat.modules.blockers; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/CurseOfSpamRemover.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/CurseOfSpamRemover.java similarity index 89% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/CurseOfSpamRemover.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/CurseOfSpamRemover.java index 850b5e10..1fd45bf6 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/CurseOfSpamRemover.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/CurseOfSpamRemover.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.blockers; +package org.polyfrost.hytils.handlers.chat.modules.blockers; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/DiscordSafetyWarningRemover.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/DiscordSafetyWarningRemover.java similarity index 89% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/DiscordSafetyWarningRemover.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/DiscordSafetyWarningRemover.java index ace724c5..7af3c4dd 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/DiscordSafetyWarningRemover.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/DiscordSafetyWarningRemover.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.blockers; +package org.polyfrost.hytils.handlers.chat.modules.blockers; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/DuelsBlockTrail.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/DuelsBlockTrail.java similarity index 89% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/DuelsBlockTrail.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/DuelsBlockTrail.java index b149d059..617a9a97 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/DuelsBlockTrail.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/DuelsBlockTrail.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.blockers; +package org.polyfrost.hytils.handlers.chat.modules.blockers; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/DuelsNoStatsChange.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/DuelsNoStatsChange.java similarity index 89% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/DuelsNoStatsChange.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/DuelsNoStatsChange.java index 23c85280..a06446e9 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/DuelsNoStatsChange.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/DuelsNoStatsChange.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.blockers; +package org.polyfrost.hytils.handlers.chat.modules.blockers; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/EarnedCoinsAndExpRemover.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/EarnedCoinsAndExpRemover.java similarity index 90% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/EarnedCoinsAndExpRemover.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/EarnedCoinsAndExpRemover.java index 1d9821b2..e7ee5b85 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/EarnedCoinsAndExpRemover.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/EarnedCoinsAndExpRemover.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.blockers; +package org.polyfrost.hytils.handlers.chat.modules.blockers; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/GameAnnouncementsRemover.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/GameAnnouncementsRemover.java similarity index 89% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/GameAnnouncementsRemover.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/GameAnnouncementsRemover.java index d2c4122a..b6a59599 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/GameAnnouncementsRemover.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/GameAnnouncementsRemover.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.blockers; +package org.polyfrost.hytils.handlers.chat.modules.blockers; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/GameTipsRemover.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/GameTipsRemover.java similarity index 89% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/GameTipsRemover.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/GameTipsRemover.java index bb246f78..8d29d759 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/GameTipsRemover.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/GameTipsRemover.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.blockers; +package org.polyfrost.hytils.handlers.chat.modules.blockers; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/GiftBlocker.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/GiftBlocker.java similarity index 89% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/GiftBlocker.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/GiftBlocker.java index eb8736ae..f06302c6 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/GiftBlocker.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/GiftBlocker.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.blockers; +package org.polyfrost.hytils.handlers.chat.modules.blockers; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/GuildMOTD.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/GuildMOTD.java similarity index 94% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/GuildMOTD.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/GuildMOTD.java index 77164f64..92c332e3 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/GuildMOTD.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/GuildMOTD.java @@ -16,11 +16,11 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.blockers; +package org.polyfrost.hytils.handlers.chat.modules.blockers; import cc.polyfrost.oneconfig.utils.Multithreading; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; import net.minecraftforge.common.MinecraftForge; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/HotPotatoRemover.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/HotPotatoRemover.java similarity index 89% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/HotPotatoRemover.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/HotPotatoRemover.java index 797df7a5..f5e64576 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/HotPotatoRemover.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/HotPotatoRemover.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.blockers; +package org.polyfrost.hytils.handlers.chat.modules.blockers; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/HypeLimitReminderRemover.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/HypeLimitReminderRemover.java similarity index 89% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/HypeLimitReminderRemover.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/HypeLimitReminderRemover.java index 15df9f29..0acb6d04 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/HypeLimitReminderRemover.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/HypeLimitReminderRemover.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.blockers; +package org.polyfrost.hytils.handlers.chat.modules.blockers; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/LobbyFishingAnnouncementRemover.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/LobbyFishingAnnouncementRemover.java similarity index 90% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/LobbyFishingAnnouncementRemover.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/LobbyFishingAnnouncementRemover.java index 9b84ddd9..a66bd2d8 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/LobbyFishingAnnouncementRemover.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/LobbyFishingAnnouncementRemover.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.blockers; +package org.polyfrost.hytils.handlers.chat.modules.blockers; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/LobbyStatusRemover.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/LobbyStatusRemover.java similarity index 90% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/LobbyStatusRemover.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/LobbyStatusRemover.java index 50ed708a..335c3b3d 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/LobbyStatusRemover.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/LobbyStatusRemover.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.blockers; +package org.polyfrost.hytils.handlers.chat.modules.blockers; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/MvpEmotesRemover.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/MvpEmotesRemover.java similarity index 87% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/MvpEmotesRemover.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/MvpEmotesRemover.java index 03b0743e..2d04a581 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/MvpEmotesRemover.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/MvpEmotesRemover.java @@ -16,11 +16,11 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.blockers; +package org.polyfrost.hytils.handlers.chat.modules.blockers; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; -import cc.woverflow.hytils.handlers.language.LanguageData; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.handlers.language.LanguageData; import net.minecraft.util.ChatComponentText; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/MysteryBoxRemover.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/MysteryBoxRemover.java similarity index 89% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/MysteryBoxRemover.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/MysteryBoxRemover.java index b3c1317a..05095ed2 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/MysteryBoxRemover.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/MysteryBoxRemover.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.blockers; +package org.polyfrost.hytils.handlers.chat.modules.blockers; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/NonCooldownBlocker.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/NonCooldownBlocker.java similarity index 89% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/NonCooldownBlocker.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/NonCooldownBlocker.java index c1f7e6ae..1faa1ea8 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/NonCooldownBlocker.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/NonCooldownBlocker.java @@ -16,12 +16,12 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.blockers; +package org.polyfrost.hytils.handlers.chat.modules.blockers; -import cc.woverflow.hytils.HytilsReborn; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatSendModule; -import cc.woverflow.hytils.util.ranks.RankType; +import org.polyfrost.hytils.HytilsReborn; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatSendModule; +import org.polyfrost.hytils.util.ranks.RankType; import net.minecraft.client.Minecraft; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/OnlineStatusRemover.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/OnlineStatusRemover.java similarity index 89% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/OnlineStatusRemover.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/OnlineStatusRemover.java index 2cb3be51..42f579e8 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/OnlineStatusRemover.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/OnlineStatusRemover.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.blockers; +package org.polyfrost.hytils.handlers.chat.modules.blockers; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/QuestBlocker.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/QuestBlocker.java similarity index 89% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/QuestBlocker.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/QuestBlocker.java index 51eb8034..3661d2a2 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/QuestBlocker.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/QuestBlocker.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.blockers; +package org.polyfrost.hytils.handlers.chat.modules.blockers; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/ReplayRecordedRemover.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/ReplayRecordedRemover.java similarity index 89% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/ReplayRecordedRemover.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/ReplayRecordedRemover.java index 5a60fc7d..2c4ad80e 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/ReplayRecordedRemover.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/ReplayRecordedRemover.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.blockers; +package org.polyfrost.hytils.handlers.chat.modules.blockers; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/SeasonalCollectedRemover.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/SeasonalCollectedRemover.java similarity index 89% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/SeasonalCollectedRemover.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/SeasonalCollectedRemover.java index 79f596c3..247b6f45 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/SeasonalCollectedRemover.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/SeasonalCollectedRemover.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.blockers; +package org.polyfrost.hytils.handlers.chat.modules.blockers; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/ShoutBlocker.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/ShoutBlocker.java similarity index 94% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/ShoutBlocker.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/ShoutBlocker.java index 107883e1..92a24e21 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/ShoutBlocker.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/ShoutBlocker.java @@ -16,12 +16,12 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.blockers; +package org.polyfrost.hytils.handlers.chat.modules.blockers; import cc.polyfrost.oneconfig.utils.hypixel.LocrawInfo; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; -import cc.woverflow.hytils.handlers.chat.ChatSendModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.handlers.chat.ChatSendModule; import net.minecraft.client.Minecraft; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/SkyblockWelcomeRemover.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/SkyblockWelcomeRemover.java similarity index 89% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/SkyblockWelcomeRemover.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/SkyblockWelcomeRemover.java index db9fc2f0..f2583c7b 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/SkyblockWelcomeRemover.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/SkyblockWelcomeRemover.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.blockers; +package org.polyfrost.hytils.handlers.chat.modules.blockers; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/SoulWellAnnouncerRemover.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/SoulWellAnnouncerRemover.java similarity index 89% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/SoulWellAnnouncerRemover.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/SoulWellAnnouncerRemover.java index fbbdad88..7734fc57 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/SoulWellAnnouncerRemover.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/SoulWellAnnouncerRemover.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.blockers; +package org.polyfrost.hytils.handlers.chat.modules.blockers; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/StatsMessageRemover.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/StatsMessageRemover.java similarity index 89% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/StatsMessageRemover.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/StatsMessageRemover.java index 9a2568bf..057bf209 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/StatsMessageRemover.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/StatsMessageRemover.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.blockers; +package org.polyfrost.hytils.handlers.chat.modules.blockers; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/TipMessageRemover.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/TipMessageRemover.java similarity index 89% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/TipMessageRemover.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/TipMessageRemover.java index 83bda480..d0f20de0 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/blockers/TipMessageRemover.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/blockers/TipMessageRemover.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.blockers; +package org.polyfrost.hytils.handlers.chat.modules.blockers; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/events/AchievementEvent.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/events/AchievementEvent.java similarity index 90% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/events/AchievementEvent.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/events/AchievementEvent.java index 06fcaab7..d0668ff8 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/events/AchievementEvent.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/events/AchievementEvent.java @@ -16,12 +16,12 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.events; +package org.polyfrost.hytils.handlers.chat.modules.events; -import cc.woverflow.hytils.HytilsReborn; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.events.HypixelAchievementEvent; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.HytilsReborn; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.events.HypixelAchievementEvent; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; import net.minecraftforge.common.MinecraftForge; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/events/LevelupEvent.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/events/LevelupEvent.java similarity index 89% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/events/LevelupEvent.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/events/LevelupEvent.java index c7f2646e..fe8d98b5 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/events/LevelupEvent.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/events/LevelupEvent.java @@ -16,12 +16,12 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.events; +package org.polyfrost.hytils.handlers.chat.modules.events; -import cc.woverflow.hytils.HytilsReborn; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.events.HypixelLevelupEvent; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.HytilsReborn; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.events.HypixelLevelupEvent; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; import net.minecraftforge.common.MinecraftForge; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/modifiers/DefaultChatRestyler.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/modifiers/DefaultChatRestyler.java similarity index 97% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/modifiers/DefaultChatRestyler.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/modifiers/DefaultChatRestyler.java index 22e04073..08f7438b 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/modifiers/DefaultChatRestyler.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/modifiers/DefaultChatRestyler.java @@ -16,13 +16,13 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.modifiers; +package org.polyfrost.hytils.handlers.chat.modules.modifiers; -import cc.woverflow.hytils.HytilsReborn; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; -import cc.woverflow.hytils.handlers.language.LanguageData; -import cc.woverflow.hytils.handlers.lobby.limbo.LimboLimiter; +import org.polyfrost.hytils.HytilsReborn; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.handlers.language.LanguageData; +import org.polyfrost.hytils.handlers.lobby.limbo.LimboLimiter; import net.minecraft.util.ChatComponentText; import net.minecraft.util.EnumChatFormatting; import net.minecraft.util.IChatComponent; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/modifiers/GameStartCompactor.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/modifiers/GameStartCompactor.java similarity index 94% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/modifiers/GameStartCompactor.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/modifiers/GameStartCompactor.java index e05eb299..8b615f97 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/modifiers/GameStartCompactor.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/modifiers/GameStartCompactor.java @@ -16,11 +16,11 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.modifiers; +package org.polyfrost.hytils.handlers.chat.modules.modifiers; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; -import cc.woverflow.hytils.mixin.GuiNewChatAccessor; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.mixin.GuiNewChatAccessor; import com.google.common.collect.Lists; import net.minecraft.client.Minecraft; import net.minecraft.client.gui.ChatLine; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/modifiers/WhiteChat.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/modifiers/WhiteChat.java similarity index 91% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/modifiers/WhiteChat.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/modifiers/WhiteChat.java index 17366042..de78a43f 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/modifiers/WhiteChat.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/modifiers/WhiteChat.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.modifiers; +package org.polyfrost.hytils.handlers.chat.modules.modifiers; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.util.EnumChatFormatting; import net.minecraft.util.IChatComponent; import net.minecraftforge.client.event.ClientChatReceivedEvent; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/modifiers/WhitePrivateMessages.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/modifiers/WhitePrivateMessages.java similarity index 91% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/modifiers/WhitePrivateMessages.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/modifiers/WhitePrivateMessages.java index 4e07e2d2..960923b0 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/modifiers/WhitePrivateMessages.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/modifiers/WhitePrivateMessages.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.modifiers; +package org.polyfrost.hytils.handlers.chat.modules.modifiers; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.util.EnumChatFormatting; import net.minecraft.util.IChatComponent; import net.minecraftforge.client.event.ClientChatReceivedEvent; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/AutoChatReportConfirm.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/AutoChatReportConfirm.java similarity index 90% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/AutoChatReportConfirm.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/AutoChatReportConfirm.java index 50325081..e04156bf 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/AutoChatReportConfirm.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/AutoChatReportConfirm.java @@ -16,11 +16,11 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.triggers; +package org.polyfrost.hytils.handlers.chat.modules.triggers; import cc.polyfrost.oneconfig.utils.Multithreading; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.client.Minecraft; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/AutoChatSwapper.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/AutoChatSwapper.java similarity index 95% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/AutoChatSwapper.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/AutoChatSwapper.java index cafe6093..bc5eadc3 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/AutoChatSwapper.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/AutoChatSwapper.java @@ -16,18 +16,18 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.triggers; +package org.polyfrost.hytils.handlers.chat.modules.triggers; import cc.polyfrost.oneconfig.libs.universal.wrappers.message.UTextComponent; import cc.polyfrost.oneconfig.utils.Multithreading; import cc.polyfrost.oneconfig.utils.Notifications; -import cc.woverflow.chatting.chat.ChatTab; -import cc.woverflow.chatting.chat.ChatTabs; -import cc.woverflow.chatting.config.ChattingConfig; -import cc.woverflow.hytils.HytilsReborn; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; -import cc.woverflow.hytils.handlers.language.LanguageData; +import org.polyfrost.chatting.chat.ChatTab; +import org.polyfrost.chatting.chat.ChatTabs; +import org.polyfrost.chatting.config.ChattingConfig; +import org.polyfrost.hytils.HytilsReborn; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.handlers.language.LanguageData; import net.minecraftforge.client.event.ClientChatReceivedEvent; import net.minecraftforge.common.MinecraftForge; import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/AutoFriend.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/AutoFriend.java similarity index 90% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/AutoFriend.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/AutoFriend.java index 1fdb9a39..7e3d11fb 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/AutoFriend.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/AutoFriend.java @@ -16,12 +16,12 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.triggers; +package org.polyfrost.hytils.handlers.chat.modules.triggers; import cc.polyfrost.oneconfig.utils.Notifications; -import cc.woverflow.hytils.HytilsReborn; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.HytilsReborn; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/AutoGL.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/AutoGL.java similarity index 91% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/AutoGL.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/AutoGL.java index 9064481b..c3e6dec2 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/AutoGL.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/AutoGL.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.triggers; +package org.polyfrost.hytils.handlers.chat.modules.triggers; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.client.Minecraft; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/AutoPartyWarpConfirm.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/AutoPartyWarpConfirm.java similarity index 91% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/AutoPartyWarpConfirm.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/AutoPartyWarpConfirm.java index 88f5d35f..c645a0d9 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/AutoPartyWarpConfirm.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/AutoPartyWarpConfirm.java @@ -16,11 +16,11 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.triggers; +package org.polyfrost.hytils.handlers.chat.modules.triggers; import cc.polyfrost.oneconfig.utils.Multithreading; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.client.Minecraft; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/AutoQueue.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/AutoQueue.java similarity index 92% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/AutoQueue.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/AutoQueue.java index 20df9313..6ca7e077 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/AutoQueue.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/AutoQueue.java @@ -16,13 +16,13 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.triggers; +package org.polyfrost.hytils.handlers.chat.modules.triggers; import cc.polyfrost.oneconfig.utils.Multithreading; -import cc.woverflow.hytils.HytilsReborn; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.cache.LocrawGamesHandler; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.HytilsReborn; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.cache.LocrawGamesHandler; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraftforge.client.event.ClientChatReceivedEvent; import net.minecraftforge.event.world.WorldEvent; import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/AutoVictory.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/AutoVictory.java similarity index 92% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/AutoVictory.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/AutoVictory.java index 9c2a8e31..f8e80291 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/AutoVictory.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/AutoVictory.java @@ -16,19 +16,19 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.triggers; +package org.polyfrost.hytils.handlers.chat.modules.triggers; import cc.polyfrost.oneconfig.libs.universal.wrappers.message.UTextComponent; import cc.polyfrost.oneconfig.utils.Multithreading; import cc.polyfrost.oneconfig.utils.Notifications; import cc.polyfrost.oneconfig.utils.hypixel.LocrawInfo; -import cc.woverflow.hytils.HytilsReborn; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.events.TitleEvent; -import cc.woverflow.hytils.handlers.cache.PatternHandler; -import cc.woverflow.hytils.handlers.chat.ChatReceiveResetModule; -import cc.woverflow.hytils.mixin.GuiIngameAccessor; -import cc.woverflow.hytils.util.HypixelAPIUtils; +import org.polyfrost.hytils.HytilsReborn; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.events.TitleEvent; +import org.polyfrost.hytils.handlers.cache.PatternHandler; +import org.polyfrost.hytils.handlers.chat.ChatReceiveResetModule; +import org.polyfrost.hytils.mixin.GuiIngameAccessor; +import org.polyfrost.hytils.util.HypixelAPIUtils; import net.minecraft.client.Minecraft; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/AutoWB.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/AutoWB.java similarity index 94% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/AutoWB.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/AutoWB.java index 9c72931f..6f4725d0 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/AutoWB.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/AutoWB.java @@ -16,12 +16,12 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.triggers; +package org.polyfrost.hytils.handlers.chat.modules.triggers; import cc.polyfrost.oneconfig.utils.Multithreading; -import cc.woverflow.hytils.HytilsReborn; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.HytilsReborn; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.client.Minecraft; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/AutoWarn.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/AutoWarn.java similarity index 90% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/AutoWarn.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/AutoWarn.java index 2881c3bc..fbef735c 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/AutoWarn.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/AutoWarn.java @@ -16,12 +16,12 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.triggers; +package org.polyfrost.hytils.handlers.chat.modules.triggers; import cc.polyfrost.oneconfig.libs.universal.UChat; import cc.polyfrost.oneconfig.libs.universal.wrappers.message.UTextComponent; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/GuildWelcomer.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/GuildWelcomer.java similarity index 90% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/GuildWelcomer.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/GuildWelcomer.java index f5091497..952f87ca 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/GuildWelcomer.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/GuildWelcomer.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.triggers; +package org.polyfrost.hytils.handlers.chat.modules.triggers; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.client.Minecraft; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/SilentRemoval.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/SilentRemoval.java similarity index 92% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/SilentRemoval.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/SilentRemoval.java index a532d119..c23ed88d 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/SilentRemoval.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/SilentRemoval.java @@ -16,11 +16,11 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.triggers; +package org.polyfrost.hytils.handlers.chat.modules.triggers; import cc.polyfrost.oneconfig.utils.Notifications; -import cc.woverflow.hytils.HytilsReborn; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.HytilsReborn; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/ThankWatchdog.java b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/ThankWatchdog.java similarity index 89% rename from src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/ThankWatchdog.java rename to src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/ThankWatchdog.java index 21e0df04..0423fc15 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/chat/modules/triggers/ThankWatchdog.java +++ b/src/main/java/org/polyfrost/hytils/handlers/chat/modules/triggers/ThankWatchdog.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.chat.modules.triggers; +package org.polyfrost.hytils.handlers.chat.modules.triggers; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.ChatReceiveModule; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.ChatReceiveModule; import net.minecraft.client.Minecraft; import net.minecraftforge.client.event.ClientChatReceivedEvent; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/cc/woverflow/hytils/handlers/game/dropper/DropperHurtSound.java b/src/main/java/org/polyfrost/hytils/handlers/game/dropper/DropperHurtSound.java similarity index 93% rename from src/main/java/cc/woverflow/hytils/handlers/game/dropper/DropperHurtSound.java rename to src/main/java/org/polyfrost/hytils/handlers/game/dropper/DropperHurtSound.java index 881d2fe3..de9ba8f0 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/game/dropper/DropperHurtSound.java +++ b/src/main/java/org/polyfrost/hytils/handlers/game/dropper/DropperHurtSound.java @@ -16,12 +16,12 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.game.dropper; +package org.polyfrost.hytils.handlers.game.dropper; import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; import cc.polyfrost.oneconfig.utils.hypixel.LocrawInfo; import cc.polyfrost.oneconfig.utils.hypixel.LocrawUtil; -import cc.woverflow.hytils.config.HytilsConfig; +import org.polyfrost.hytils.config.HytilsConfig; import net.minecraftforge.client.event.sound.PlaySoundEvent; import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; diff --git a/src/main/java/cc/woverflow/hytils/handlers/game/duels/SumoRenderDistance.java b/src/main/java/org/polyfrost/hytils/handlers/game/duels/SumoRenderDistance.java similarity index 95% rename from src/main/java/cc/woverflow/hytils/handlers/game/duels/SumoRenderDistance.java rename to src/main/java/org/polyfrost/hytils/handlers/game/duels/SumoRenderDistance.java index b40d8e97..d74b72b9 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/game/duels/SumoRenderDistance.java +++ b/src/main/java/org/polyfrost/hytils/handlers/game/duels/SumoRenderDistance.java @@ -16,12 +16,12 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.game.duels; +package org.polyfrost.hytils.handlers.game.duels; import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; import cc.polyfrost.oneconfig.utils.hypixel.LocrawInfo; import cc.polyfrost.oneconfig.utils.hypixel.LocrawUtil; -import cc.woverflow.hytils.config.HytilsConfig; +import org.polyfrost.hytils.config.HytilsConfig; import net.minecraft.client.Minecraft; import net.minecraft.client.settings.GameSettings; import net.minecraftforge.client.event.RenderWorldLastEvent; diff --git a/src/main/java/cc/woverflow/hytils/handlers/game/hardcore/HardcoreStatus.java b/src/main/java/org/polyfrost/hytils/handlers/game/hardcore/HardcoreStatus.java similarity index 94% rename from src/main/java/cc/woverflow/hytils/handlers/game/hardcore/HardcoreStatus.java rename to src/main/java/org/polyfrost/hytils/handlers/game/hardcore/HardcoreStatus.java index 39d13856..21b1ba81 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/game/hardcore/HardcoreStatus.java +++ b/src/main/java/org/polyfrost/hytils/handlers/game/hardcore/HardcoreStatus.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.game.hardcore; +package org.polyfrost.hytils.handlers.game.hardcore; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.events.TitleEvent; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.events.TitleEvent; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.ClientChatReceivedEvent; import net.minecraftforge.event.world.WorldEvent; diff --git a/src/main/java/cc/woverflow/hytils/handlers/game/housing/HousingMusic.java b/src/main/java/org/polyfrost/hytils/handlers/game/housing/HousingMusic.java similarity index 93% rename from src/main/java/cc/woverflow/hytils/handlers/game/housing/HousingMusic.java rename to src/main/java/org/polyfrost/hytils/handlers/game/housing/HousingMusic.java index 4e8f9a21..df1bb689 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/game/housing/HousingMusic.java +++ b/src/main/java/org/polyfrost/hytils/handlers/game/housing/HousingMusic.java @@ -16,12 +16,12 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.game.housing; +package org.polyfrost.hytils.handlers.game.housing; import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; import cc.polyfrost.oneconfig.utils.hypixel.LocrawInfo; import cc.polyfrost.oneconfig.utils.hypixel.LocrawUtil; -import cc.woverflow.hytils.config.HytilsConfig; +import org.polyfrost.hytils.config.HytilsConfig; import net.minecraftforge.client.event.sound.PlaySoundEvent; import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; diff --git a/src/main/java/cc/woverflow/hytils/handlers/game/miniwalls/MiddleBeaconMiniWalls.java b/src/main/java/org/polyfrost/hytils/handlers/game/miniwalls/MiddleBeaconMiniWalls.java similarity index 92% rename from src/main/java/cc/woverflow/hytils/handlers/game/miniwalls/MiddleBeaconMiniWalls.java rename to src/main/java/org/polyfrost/hytils/handlers/game/miniwalls/MiddleBeaconMiniWalls.java index 05b34329..e795c518 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/game/miniwalls/MiddleBeaconMiniWalls.java +++ b/src/main/java/org/polyfrost/hytils/handlers/game/miniwalls/MiddleBeaconMiniWalls.java @@ -16,15 +16,15 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.game.miniwalls; +package org.polyfrost.hytils.handlers.game.miniwalls; import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; import cc.polyfrost.oneconfig.utils.hypixel.LocrawInfo; import cc.polyfrost.oneconfig.utils.hypixel.LocrawUtil; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.events.TitleEvent; -import cc.woverflow.hytils.util.WaypointUtil; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.events.TitleEvent; +import org.polyfrost.hytils.util.WaypointUtil; import net.minecraft.util.BlockPos; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.client.event.RenderWorldLastEvent; diff --git a/src/main/java/cc/woverflow/hytils/handlers/game/pit/PitLagReducer.java b/src/main/java/org/polyfrost/hytils/handlers/game/pit/PitLagReducer.java similarity index 96% rename from src/main/java/cc/woverflow/hytils/handlers/game/pit/PitLagReducer.java rename to src/main/java/org/polyfrost/hytils/handlers/game/pit/PitLagReducer.java index 73cc82fd..76a13676 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/game/pit/PitLagReducer.java +++ b/src/main/java/org/polyfrost/hytils/handlers/game/pit/PitLagReducer.java @@ -16,12 +16,12 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.game.pit; +package org.polyfrost.hytils.handlers.game.pit; import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; import cc.polyfrost.oneconfig.utils.hypixel.LocrawInfo; import cc.polyfrost.oneconfig.utils.hypixel.LocrawUtil; -import cc.woverflow.hytils.config.HytilsConfig; +import org.polyfrost.hytils.config.HytilsConfig; import net.minecraft.client.Minecraft; import net.minecraft.entity.EntityLiving; import net.minecraft.entity.item.EntityArmorStand; diff --git a/src/main/java/cc/woverflow/hytils/handlers/game/titles/CountdownTitles.java b/src/main/java/org/polyfrost/hytils/handlers/game/titles/CountdownTitles.java similarity index 92% rename from src/main/java/cc/woverflow/hytils/handlers/game/titles/CountdownTitles.java rename to src/main/java/org/polyfrost/hytils/handlers/game/titles/CountdownTitles.java index 070094a0..e5516491 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/game/titles/CountdownTitles.java +++ b/src/main/java/org/polyfrost/hytils/handlers/game/titles/CountdownTitles.java @@ -16,11 +16,11 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.game.titles; +package org.polyfrost.hytils.handlers.game.titles; import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.events.TitleEvent; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.events.TitleEvent; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.fml.common.eventhandler.EventPriority; import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; diff --git a/src/main/java/cc/woverflow/hytils/handlers/game/titles/GameEndingTitles.java b/src/main/java/org/polyfrost/hytils/handlers/game/titles/GameEndingTitles.java similarity index 92% rename from src/main/java/cc/woverflow/hytils/handlers/game/titles/GameEndingTitles.java rename to src/main/java/org/polyfrost/hytils/handlers/game/titles/GameEndingTitles.java index 06587e28..adba04b4 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/game/titles/GameEndingTitles.java +++ b/src/main/java/org/polyfrost/hytils/handlers/game/titles/GameEndingTitles.java @@ -16,11 +16,11 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.game.titles; +package org.polyfrost.hytils.handlers.game.titles; import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.events.TitleEvent; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.events.TitleEvent; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.fml.common.eventhandler.EventPriority; import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; diff --git a/src/main/java/cc/woverflow/hytils/handlers/game/titles/GameStartingTitles.java b/src/main/java/org/polyfrost/hytils/handlers/game/titles/GameStartingTitles.java similarity index 93% rename from src/main/java/cc/woverflow/hytils/handlers/game/titles/GameStartingTitles.java rename to src/main/java/org/polyfrost/hytils/handlers/game/titles/GameStartingTitles.java index 44f2f7ca..314c6143 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/game/titles/GameStartingTitles.java +++ b/src/main/java/org/polyfrost/hytils/handlers/game/titles/GameStartingTitles.java @@ -16,11 +16,11 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.game.titles; +package org.polyfrost.hytils.handlers.game.titles; import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.events.TitleEvent; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.events.TitleEvent; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.fml.common.eventhandler.EventPriority; import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; diff --git a/src/main/java/cc/woverflow/hytils/handlers/game/uhc/MiddleWaypointUHC.java b/src/main/java/org/polyfrost/hytils/handlers/game/uhc/MiddleWaypointUHC.java similarity index 92% rename from src/main/java/cc/woverflow/hytils/handlers/game/uhc/MiddleWaypointUHC.java rename to src/main/java/org/polyfrost/hytils/handlers/game/uhc/MiddleWaypointUHC.java index e37ec803..cb67142d 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/game/uhc/MiddleWaypointUHC.java +++ b/src/main/java/org/polyfrost/hytils/handlers/game/uhc/MiddleWaypointUHC.java @@ -16,13 +16,13 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.game.uhc; +package org.polyfrost.hytils.handlers.game.uhc; import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; import cc.polyfrost.oneconfig.utils.hypixel.LocrawInfo; import cc.polyfrost.oneconfig.utils.hypixel.LocrawUtil; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.util.WaypointUtil; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.util.WaypointUtil; import net.minecraft.util.BlockPos; import net.minecraftforge.client.event.RenderWorldLastEvent; import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; diff --git a/src/main/java/cc/woverflow/hytils/handlers/general/AutoStart.java b/src/main/java/org/polyfrost/hytils/handlers/general/AutoStart.java similarity index 93% rename from src/main/java/cc/woverflow/hytils/handlers/general/AutoStart.java rename to src/main/java/org/polyfrost/hytils/handlers/general/AutoStart.java index 4290c749..48e397a5 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/general/AutoStart.java +++ b/src/main/java/org/polyfrost/hytils/handlers/general/AutoStart.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.general; +package org.polyfrost.hytils.handlers.general; -import cc.woverflow.hytils.HytilsReborn; -import cc.woverflow.hytils.config.HytilsConfig; +import org.polyfrost.hytils.HytilsReborn; +import org.polyfrost.hytils.config.HytilsConfig; import net.minecraft.client.Minecraft; import net.minecraft.client.gui.GuiMainMenu; import net.minecraft.client.gui.GuiMultiplayer; diff --git a/src/main/java/cc/woverflow/hytils/handlers/general/CommandQueue.java b/src/main/java/org/polyfrost/hytils/handlers/general/CommandQueue.java similarity index 98% rename from src/main/java/cc/woverflow/hytils/handlers/general/CommandQueue.java rename to src/main/java/org/polyfrost/hytils/handlers/general/CommandQueue.java index 738e5ba8..23b1843e 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/general/CommandQueue.java +++ b/src/main/java/org/polyfrost/hytils/handlers/general/CommandQueue.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.general; +package org.polyfrost.hytils.handlers.general; import net.minecraft.client.Minecraft; import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; diff --git a/src/main/java/cc/woverflow/hytils/handlers/general/SoundHandler.java b/src/main/java/org/polyfrost/hytils/handlers/general/SoundHandler.java similarity index 97% rename from src/main/java/cc/woverflow/hytils/handlers/general/SoundHandler.java rename to src/main/java/org/polyfrost/hytils/handlers/general/SoundHandler.java index 147a47ea..9d6a92e2 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/general/SoundHandler.java +++ b/src/main/java/org/polyfrost/hytils/handlers/general/SoundHandler.java @@ -16,11 +16,11 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.general; +package org.polyfrost.hytils.handlers.general; import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; import cc.polyfrost.oneconfig.utils.hypixel.LocrawUtil; -import cc.woverflow.hytils.config.HytilsConfig; +import org.polyfrost.hytils.config.HytilsConfig; import net.minecraft.block.BlockTNT; import net.minecraft.client.Minecraft; import net.minecraft.item.ItemBlock; diff --git a/src/main/java/cc/woverflow/hytils/handlers/language/LanguageData.java b/src/main/java/org/polyfrost/hytils/handlers/language/LanguageData.java similarity index 99% rename from src/main/java/cc/woverflow/hytils/handlers/language/LanguageData.java rename to src/main/java/org/polyfrost/hytils/handlers/language/LanguageData.java index 748de702..72221c69 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/language/LanguageData.java +++ b/src/main/java/org/polyfrost/hytils/handlers/language/LanguageData.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.language; +package org.polyfrost.hytils.handlers.language; import java.util.regex.Pattern; diff --git a/src/main/java/cc/woverflow/hytils/handlers/language/LanguageHandler.java b/src/main/java/org/polyfrost/hytils/handlers/language/LanguageHandler.java similarity index 93% rename from src/main/java/cc/woverflow/hytils/handlers/language/LanguageHandler.java rename to src/main/java/org/polyfrost/hytils/handlers/language/LanguageHandler.java index e706675e..307b9b84 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/language/LanguageHandler.java +++ b/src/main/java/org/polyfrost/hytils/handlers/language/LanguageHandler.java @@ -16,19 +16,15 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.language; +package org.polyfrost.hytils.handlers.language; import cc.polyfrost.oneconfig.utils.Multithreading; import cc.polyfrost.oneconfig.utils.NetworkUtils; import com.google.gson.Gson; import com.google.gson.GsonBuilder; import com.google.gson.JsonObject; -import net.minecraft.client.Minecraft; import org.jetbrains.annotations.Nullable; -import java.util.HashMap; -import java.util.Map; - /** * Automatically switches the player's language based on their current * Hypixel language. It does so through the Sk1er API which caches the result diff --git a/src/main/java/cc/woverflow/hytils/handlers/lobby/armorstands/ArmorStandHider.java b/src/main/java/org/polyfrost/hytils/handlers/lobby/armorstands/ArmorStandHider.java similarity index 93% rename from src/main/java/cc/woverflow/hytils/handlers/lobby/armorstands/ArmorStandHider.java rename to src/main/java/org/polyfrost/hytils/handlers/lobby/armorstands/ArmorStandHider.java index 1760567a..7b5790f4 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/lobby/armorstands/ArmorStandHider.java +++ b/src/main/java/org/polyfrost/hytils/handlers/lobby/armorstands/ArmorStandHider.java @@ -16,13 +16,13 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.lobby.armorstands; +package org.polyfrost.hytils.handlers.lobby.armorstands; import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; import cc.polyfrost.oneconfig.utils.hypixel.LocrawInfo; import cc.polyfrost.oneconfig.utils.hypixel.LocrawUtil; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.cache.ArmorStandHandler; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.cache.ArmorStandHandler; import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.item.EntityArmorStand; import net.minecraft.util.EnumChatFormatting; diff --git a/src/main/java/cc/woverflow/hytils/handlers/lobby/limbo/LimboLimiter.java b/src/main/java/org/polyfrost/hytils/handlers/lobby/limbo/LimboLimiter.java similarity index 92% rename from src/main/java/cc/woverflow/hytils/handlers/lobby/limbo/LimboLimiter.java rename to src/main/java/org/polyfrost/hytils/handlers/lobby/limbo/LimboLimiter.java index 394a9de1..57f16ebf 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/lobby/limbo/LimboLimiter.java +++ b/src/main/java/org/polyfrost/hytils/handlers/lobby/limbo/LimboLimiter.java @@ -16,13 +16,13 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.lobby.limbo; +package org.polyfrost.hytils.handlers.lobby.limbo; import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; import cc.polyfrost.oneconfig.utils.hypixel.LocrawInfo; import cc.polyfrost.oneconfig.utils.hypixel.LocrawUtil; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.chat.modules.modifiers.DefaultChatRestyler; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.chat.modules.modifiers.DefaultChatRestyler; import net.minecraft.client.Minecraft; import net.minecraftforge.event.world.WorldEvent; import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; diff --git a/src/main/java/cc/woverflow/hytils/handlers/lobby/limbo/LimboPmDing.java b/src/main/java/org/polyfrost/hytils/handlers/lobby/limbo/LimboPmDing.java similarity index 94% rename from src/main/java/cc/woverflow/hytils/handlers/lobby/limbo/LimboPmDing.java rename to src/main/java/org/polyfrost/hytils/handlers/lobby/limbo/LimboPmDing.java index 0d535fa7..b0761a16 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/lobby/limbo/LimboPmDing.java +++ b/src/main/java/org/polyfrost/hytils/handlers/lobby/limbo/LimboPmDing.java @@ -16,12 +16,12 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.lobby.limbo; +package org.polyfrost.hytils.handlers.lobby.limbo; import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; import cc.polyfrost.oneconfig.utils.hypixel.LocrawInfo; import cc.polyfrost.oneconfig.utils.hypixel.LocrawUtil; -import cc.woverflow.hytils.config.HytilsConfig; +import org.polyfrost.hytils.config.HytilsConfig; import net.minecraft.client.Minecraft; import net.minecraftforge.client.event.ClientChatReceivedEvent; import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; diff --git a/src/main/java/cc/woverflow/hytils/handlers/lobby/limbo/LimboTitle.java b/src/main/java/org/polyfrost/hytils/handlers/lobby/limbo/LimboTitle.java similarity index 91% rename from src/main/java/cc/woverflow/hytils/handlers/lobby/limbo/LimboTitle.java rename to src/main/java/org/polyfrost/hytils/handlers/lobby/limbo/LimboTitle.java index ecb44f1d..b18ff47d 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/lobby/limbo/LimboTitle.java +++ b/src/main/java/org/polyfrost/hytils/handlers/lobby/limbo/LimboTitle.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.lobby.limbo; +package org.polyfrost.hytils.handlers.lobby.limbo; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.events.TitleEvent; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.events.TitleEvent; import net.minecraft.client.Minecraft; import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; diff --git a/src/main/java/cc/woverflow/hytils/handlers/lobby/mysterybox/MysteryBoxStar.java b/src/main/java/org/polyfrost/hytils/handlers/lobby/mysterybox/MysteryBoxStar.java similarity index 96% rename from src/main/java/cc/woverflow/hytils/handlers/lobby/mysterybox/MysteryBoxStar.java rename to src/main/java/org/polyfrost/hytils/handlers/lobby/mysterybox/MysteryBoxStar.java index cb9e9e98..6fc20f18 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/lobby/mysterybox/MysteryBoxStar.java +++ b/src/main/java/org/polyfrost/hytils/handlers/lobby/mysterybox/MysteryBoxStar.java @@ -16,13 +16,13 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.lobby.mysterybox; +package org.polyfrost.hytils.handlers.lobby.mysterybox; import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; import cc.polyfrost.oneconfig.utils.hypixel.LocrawUtil; -import cc.woverflow.hytils.HytilsReborn; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.util.ranks.RankType; +import org.polyfrost.hytils.HytilsReborn; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.util.ranks.RankType; import net.minecraft.client.Minecraft; import net.minecraft.client.gui.FontRenderer; import net.minecraft.client.gui.inventory.GuiChest; diff --git a/src/main/java/cc/woverflow/hytils/handlers/lobby/npc/NPCHandler.java b/src/main/java/org/polyfrost/hytils/handlers/lobby/npc/NPCHandler.java similarity index 96% rename from src/main/java/cc/woverflow/hytils/handlers/lobby/npc/NPCHandler.java rename to src/main/java/org/polyfrost/hytils/handlers/lobby/npc/NPCHandler.java index 3fd03743..eb0e7844 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/lobby/npc/NPCHandler.java +++ b/src/main/java/org/polyfrost/hytils/handlers/lobby/npc/NPCHandler.java @@ -16,12 +16,12 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.lobby.npc; +package org.polyfrost.hytils.handlers.lobby.npc; import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; import cc.polyfrost.oneconfig.utils.hypixel.LocrawInfo; import cc.polyfrost.oneconfig.utils.hypixel.LocrawUtil; -import cc.woverflow.hytils.config.HytilsConfig; +import org.polyfrost.hytils.config.HytilsConfig; import com.google.common.collect.Collections2; import net.minecraft.client.network.NetworkPlayerInfo; import net.minecraft.entity.EntityLivingBase; diff --git a/src/main/java/cc/woverflow/hytils/handlers/lobby/sound/SilentLobby.java b/src/main/java/org/polyfrost/hytils/handlers/lobby/sound/SilentLobby.java similarity index 93% rename from src/main/java/cc/woverflow/hytils/handlers/lobby/sound/SilentLobby.java rename to src/main/java/org/polyfrost/hytils/handlers/lobby/sound/SilentLobby.java index ec4d44ab..60abad72 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/lobby/sound/SilentLobby.java +++ b/src/main/java/org/polyfrost/hytils/handlers/lobby/sound/SilentLobby.java @@ -16,11 +16,11 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.lobby.sound; +package org.polyfrost.hytils.handlers.lobby.sound; import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; import cc.polyfrost.oneconfig.utils.hypixel.LocrawUtil; -import cc.woverflow.hytils.config.HytilsConfig; +import org.polyfrost.hytils.config.HytilsConfig; import net.minecraftforge.client.event.sound.PlaySoundEvent; import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; diff --git a/src/main/java/cc/woverflow/hytils/handlers/lobby/tab/TabChanger.java b/src/main/java/org/polyfrost/hytils/handlers/lobby/tab/TabChanger.java similarity index 96% rename from src/main/java/cc/woverflow/hytils/handlers/lobby/tab/TabChanger.java rename to src/main/java/org/polyfrost/hytils/handlers/lobby/tab/TabChanger.java index 461ac38d..9eb91fd9 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/lobby/tab/TabChanger.java +++ b/src/main/java/org/polyfrost/hytils/handlers/lobby/tab/TabChanger.java @@ -16,23 +16,24 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.lobby.tab; +package org.polyfrost.hytils.handlers.lobby.tab; import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; import cc.polyfrost.oneconfig.utils.hypixel.LocrawInfo; import cc.polyfrost.oneconfig.utils.hypixel.LocrawUtil; -import cc.woverflow.hytils.HytilsReborn; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.language.LanguageData; +import org.polyfrost.hytils.HytilsReborn; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.language.LanguageData; import net.minecraft.client.Minecraft; import net.minecraft.client.gui.FontRenderer; import net.minecraft.client.network.NetworkPlayerInfo; +import org.polyfrost.hytils.forge.HytilsMixinPlugin; import java.util.*; import java.util.regex.Pattern; /** - * Used in {@link cc.woverflow.hytils.forge.HytilsMixinPlugin + * Used in {@link HytilsMixinPlugin */ @SuppressWarnings("unused") public class TabChanger { diff --git a/src/main/java/cc/woverflow/hytils/handlers/render/ChestHighlighter.java b/src/main/java/org/polyfrost/hytils/handlers/render/ChestHighlighter.java similarity index 98% rename from src/main/java/cc/woverflow/hytils/handlers/render/ChestHighlighter.java rename to src/main/java/org/polyfrost/hytils/handlers/render/ChestHighlighter.java index 43f2a6d1..609a6aae 100644 --- a/src/main/java/cc/woverflow/hytils/handlers/render/ChestHighlighter.java +++ b/src/main/java/org/polyfrost/hytils/handlers/render/ChestHighlighter.java @@ -16,13 +16,13 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.handlers.render; +package org.polyfrost.hytils.handlers.render; import cc.polyfrost.oneconfig.config.core.OneColor; import cc.polyfrost.oneconfig.utils.hypixel.LocrawInfo; import cc.polyfrost.oneconfig.utils.hypixel.LocrawUtil; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.events.TitleEvent; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.events.TitleEvent; import net.minecraft.client.Minecraft; import net.minecraft.client.renderer.GlStateManager; import net.minecraft.client.renderer.Tessellator; diff --git a/src/main/java/cc/woverflow/hytils/hooks/BedModelHook.java b/src/main/java/org/polyfrost/hytils/hooks/BedModelHook.java similarity index 97% rename from src/main/java/cc/woverflow/hytils/hooks/BedModelHook.java rename to src/main/java/org/polyfrost/hytils/hooks/BedModelHook.java index 322ba38d..7d6da9ad 100644 --- a/src/main/java/cc/woverflow/hytils/hooks/BedModelHook.java +++ b/src/main/java/org/polyfrost/hytils/hooks/BedModelHook.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.hooks; +package org.polyfrost.hytils.hooks; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.cache.BedLocationHandler; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.cache.BedLocationHandler; import net.minecraft.block.BlockBed; import net.minecraft.block.BlockDirectional; import net.minecraft.block.state.IBlockState; diff --git a/src/main/java/cc/woverflow/hytils/hooks/BlockModelRendererHook.java b/src/main/java/org/polyfrost/hytils/hooks/BlockModelRendererHook.java similarity index 90% rename from src/main/java/cc/woverflow/hytils/hooks/BlockModelRendererHook.java rename to src/main/java/org/polyfrost/hytils/hooks/BlockModelRendererHook.java index ae01f36a..bf7f57a3 100644 --- a/src/main/java/cc/woverflow/hytils/hooks/BlockModelRendererHook.java +++ b/src/main/java/org/polyfrost/hytils/hooks/BlockModelRendererHook.java @@ -16,19 +16,19 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.hooks; +package org.polyfrost.hytils.hooks; import cc.polyfrost.oneconfig.utils.color.ColorUtils; import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; -import cc.woverflow.hytils.util.DarkColorUtils; +import org.polyfrost.hytils.util.DarkColorUtils; import net.minecraft.block.BlockColored; import net.minecraft.block.material.MapColor; import net.minecraft.block.material.Material; import net.minecraft.block.state.IBlockState; import net.minecraft.util.BlockPos; -import cc.woverflow.hytils.config.BlockHighlightConfig; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.cache.HeightHandler; +import org.polyfrost.hytils.config.BlockHighlightConfig; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.cache.HeightHandler; import org.spongepowered.asm.mixin.injection.invoke.arg.Args; public class BlockModelRendererHook { diff --git a/src/main/java/cc/woverflow/hytils/hooks/LineSeparatorEnhancements.java b/src/main/java/org/polyfrost/hytils/hooks/LineSeparatorEnhancements.java similarity index 96% rename from src/main/java/cc/woverflow/hytils/hooks/LineSeparatorEnhancements.java rename to src/main/java/org/polyfrost/hytils/hooks/LineSeparatorEnhancements.java index 347ec461..35efa07d 100644 --- a/src/main/java/cc/woverflow/hytils/hooks/LineSeparatorEnhancements.java +++ b/src/main/java/org/polyfrost/hytils/hooks/LineSeparatorEnhancements.java @@ -16,12 +16,12 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.hooks; +package org.polyfrost.hytils.hooks; import cc.polyfrost.oneconfig.libs.caffeine.cache.Cache; import cc.polyfrost.oneconfig.libs.caffeine.cache.Caffeine; -import cc.woverflow.hytils.HytilsReborn; -import cc.woverflow.hytils.config.HytilsConfig; +import org.polyfrost.hytils.HytilsReborn; +import org.polyfrost.hytils.config.HytilsConfig; import net.minecraft.client.Minecraft; import net.minecraft.util.EnumChatFormatting; import net.minecraft.util.IChatComponent; diff --git a/src/main/java/cc/woverflow/hytils/mixin/BossStatusMixin_HideBossbar.java b/src/main/java/org/polyfrost/hytils/mixin/BossStatusMixin_HideBossbar.java similarity index 93% rename from src/main/java/cc/woverflow/hytils/mixin/BossStatusMixin_HideBossbar.java rename to src/main/java/org/polyfrost/hytils/mixin/BossStatusMixin_HideBossbar.java index a8255771..030f7823 100644 --- a/src/main/java/cc/woverflow/hytils/mixin/BossStatusMixin_HideBossbar.java +++ b/src/main/java/org/polyfrost/hytils/mixin/BossStatusMixin_HideBossbar.java @@ -16,11 +16,11 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.mixin; +package org.polyfrost.hytils.mixin; import cc.polyfrost.oneconfig.utils.hypixel.LocrawUtil; -import cc.woverflow.hytils.HytilsReborn; -import cc.woverflow.hytils.config.HytilsConfig; +import org.polyfrost.hytils.HytilsReborn; +import org.polyfrost.hytils.config.HytilsConfig; import net.minecraft.entity.boss.BossStatus; import net.minecraft.entity.boss.IBossDisplayData; import org.spongepowered.asm.mixin.Mixin; diff --git a/src/main/java/cc/woverflow/hytils/mixin/CommandLimboMixin_FixCommand.java b/src/main/java/org/polyfrost/hytils/mixin/CommandLimboMixin_FixCommand.java similarity index 97% rename from src/main/java/cc/woverflow/hytils/mixin/CommandLimboMixin_FixCommand.java rename to src/main/java/org/polyfrost/hytils/mixin/CommandLimboMixin_FixCommand.java index 51c595d7..d2bbdb52 100644 --- a/src/main/java/cc/woverflow/hytils/mixin/CommandLimboMixin_FixCommand.java +++ b/src/main/java/org/polyfrost/hytils/mixin/CommandLimboMixin_FixCommand.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.mixin; +package org.polyfrost.hytils.mixin; import org.spongepowered.asm.mixin.Dynamic; import org.spongepowered.asm.mixin.Mixin; diff --git a/src/main/java/cc/woverflow/hytils/mixin/EntityLivingBaseMixin_MiningFatigue.java b/src/main/java/org/polyfrost/hytils/mixin/EntityLivingBaseMixin_MiningFatigue.java similarity index 96% rename from src/main/java/cc/woverflow/hytils/mixin/EntityLivingBaseMixin_MiningFatigue.java rename to src/main/java/org/polyfrost/hytils/mixin/EntityLivingBaseMixin_MiningFatigue.java index c7387067..ad3dffd2 100644 --- a/src/main/java/cc/woverflow/hytils/mixin/EntityLivingBaseMixin_MiningFatigue.java +++ b/src/main/java/org/polyfrost/hytils/mixin/EntityLivingBaseMixin_MiningFatigue.java @@ -16,12 +16,12 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.mixin; +package org.polyfrost.hytils.mixin; import cc.polyfrost.oneconfig.utils.Notifications; import cc.polyfrost.oneconfig.utils.hypixel.LocrawInfo; import cc.polyfrost.oneconfig.utils.hypixel.LocrawUtil; -import cc.woverflow.hytils.config.HytilsConfig; +import org.polyfrost.hytils.config.HytilsConfig; import net.minecraft.client.entity.EntityPlayerSP; import net.minecraft.entity.EntityLivingBase; import net.minecraft.potion.Potion; diff --git a/src/main/java/cc/woverflow/hytils/mixin/EntityPlayerSPMixin_MessageHandling.java b/src/main/java/org/polyfrost/hytils/mixin/EntityPlayerSPMixin_MessageHandling.java similarity index 94% rename from src/main/java/cc/woverflow/hytils/mixin/EntityPlayerSPMixin_MessageHandling.java rename to src/main/java/org/polyfrost/hytils/mixin/EntityPlayerSPMixin_MessageHandling.java index 73926663..eead4494 100644 --- a/src/main/java/cc/woverflow/hytils/mixin/EntityPlayerSPMixin_MessageHandling.java +++ b/src/main/java/org/polyfrost/hytils/mixin/EntityPlayerSPMixin_MessageHandling.java @@ -16,9 +16,9 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.mixin; +package org.polyfrost.hytils.mixin; -import cc.woverflow.hytils.HytilsReborn; +import org.polyfrost.hytils.HytilsReborn; import net.minecraft.client.entity.EntityPlayerSP; import org.spongepowered.asm.mixin.Mixin; import org.spongepowered.asm.mixin.injection.At; diff --git a/src/main/java/cc/woverflow/hytils/mixin/GuiChatMixin_PlayAutocomplete.java b/src/main/java/org/polyfrost/hytils/mixin/GuiChatMixin_PlayAutocomplete.java similarity index 98% rename from src/main/java/cc/woverflow/hytils/mixin/GuiChatMixin_PlayAutocomplete.java rename to src/main/java/org/polyfrost/hytils/mixin/GuiChatMixin_PlayAutocomplete.java index 1db89bdf..d5136fdb 100644 --- a/src/main/java/cc/woverflow/hytils/mixin/GuiChatMixin_PlayAutocomplete.java +++ b/src/main/java/org/polyfrost/hytils/mixin/GuiChatMixin_PlayAutocomplete.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.mixin; +package org.polyfrost.hytils.mixin; import net.minecraft.client.gui.GuiChat; import net.minecraft.client.gui.GuiNewChat; diff --git a/src/main/java/cc/woverflow/hytils/mixin/GuiIngameAccessor.java b/src/main/java/org/polyfrost/hytils/mixin/GuiIngameAccessor.java similarity index 96% rename from src/main/java/cc/woverflow/hytils/mixin/GuiIngameAccessor.java rename to src/main/java/org/polyfrost/hytils/mixin/GuiIngameAccessor.java index 55aa3f2a..d626b415 100644 --- a/src/main/java/cc/woverflow/hytils/mixin/GuiIngameAccessor.java +++ b/src/main/java/org/polyfrost/hytils/mixin/GuiIngameAccessor.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.mixin; +package org.polyfrost.hytils.mixin; import net.minecraft.client.gui.GuiIngame; import org.spongepowered.asm.mixin.Mixin; diff --git a/src/main/java/cc/woverflow/hytils/mixin/GuiIngameForgeMixin_HideActionbar.java b/src/main/java/org/polyfrost/hytils/mixin/GuiIngameForgeMixin_HideActionbar.java similarity index 95% rename from src/main/java/cc/woverflow/hytils/mixin/GuiIngameForgeMixin_HideActionbar.java rename to src/main/java/org/polyfrost/hytils/mixin/GuiIngameForgeMixin_HideActionbar.java index 7fbaf46a..c6753e99 100644 --- a/src/main/java/cc/woverflow/hytils/mixin/GuiIngameForgeMixin_HideActionbar.java +++ b/src/main/java/org/polyfrost/hytils/mixin/GuiIngameForgeMixin_HideActionbar.java @@ -16,12 +16,12 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.mixin; +package org.polyfrost.hytils.mixin; import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; import cc.polyfrost.oneconfig.utils.hypixel.LocrawInfo; import cc.polyfrost.oneconfig.utils.hypixel.LocrawUtil; -import cc.woverflow.hytils.config.HytilsConfig; +import org.polyfrost.hytils.config.HytilsConfig; import net.minecraftforge.client.GuiIngameForge; import org.spongepowered.asm.mixin.Mixin; import org.spongepowered.asm.mixin.injection.At; diff --git a/src/main/java/cc/woverflow/hytils/mixin/GuiIngameForgeMixin_HideHotbar.java b/src/main/java/org/polyfrost/hytils/mixin/GuiIngameForgeMixin_HideHotbar.java similarity index 99% rename from src/main/java/cc/woverflow/hytils/mixin/GuiIngameForgeMixin_HideHotbar.java rename to src/main/java/org/polyfrost/hytils/mixin/GuiIngameForgeMixin_HideHotbar.java index d674b10f..c7a9933b 100644 --- a/src/main/java/cc/woverflow/hytils/mixin/GuiIngameForgeMixin_HideHotbar.java +++ b/src/main/java/org/polyfrost/hytils/mixin/GuiIngameForgeMixin_HideHotbar.java @@ -16,12 +16,12 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.mixin; +package org.polyfrost.hytils.mixin; import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; import cc.polyfrost.oneconfig.utils.hypixel.LocrawInfo; import cc.polyfrost.oneconfig.utils.hypixel.LocrawUtil; -import cc.woverflow.hytils.config.HytilsConfig; +import org.polyfrost.hytils.config.HytilsConfig; import net.minecraft.client.Minecraft; import net.minecraftforge.client.GuiIngameForge; import org.spongepowered.asm.mixin.Mixin; diff --git a/src/main/java/cc/woverflow/hytils/mixin/GuiIngameForgeMixin_TitleEvent.java b/src/main/java/org/polyfrost/hytils/mixin/GuiIngameForgeMixin_TitleEvent.java similarity index 95% rename from src/main/java/cc/woverflow/hytils/mixin/GuiIngameForgeMixin_TitleEvent.java rename to src/main/java/org/polyfrost/hytils/mixin/GuiIngameForgeMixin_TitleEvent.java index 4787922c..696f454a 100644 --- a/src/main/java/cc/woverflow/hytils/mixin/GuiIngameForgeMixin_TitleEvent.java +++ b/src/main/java/org/polyfrost/hytils/mixin/GuiIngameForgeMixin_TitleEvent.java @@ -16,11 +16,11 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.mixin; +package org.polyfrost.hytils.mixin; import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; -import cc.woverflow.hytils.HytilsReborn; -import cc.woverflow.hytils.events.TitleEvent; +import org.polyfrost.hytils.HytilsReborn; +import org.polyfrost.hytils.events.TitleEvent; import net.minecraft.client.Minecraft; import net.minecraft.client.gui.GuiIngame; import net.minecraft.world.storage.WorldInfo; diff --git a/src/main/java/cc/woverflow/hytils/mixin/GuiNewChatAccessor.java b/src/main/java/org/polyfrost/hytils/mixin/GuiNewChatAccessor.java similarity index 97% rename from src/main/java/cc/woverflow/hytils/mixin/GuiNewChatAccessor.java rename to src/main/java/org/polyfrost/hytils/mixin/GuiNewChatAccessor.java index a0e42979..98e7f5f0 100644 --- a/src/main/java/cc/woverflow/hytils/mixin/GuiNewChatAccessor.java +++ b/src/main/java/org/polyfrost/hytils/mixin/GuiNewChatAccessor.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.mixin; +package org.polyfrost.hytils.mixin; import net.minecraft.client.gui.ChatLine; import net.minecraft.client.gui.GuiNewChat; diff --git a/src/main/java/cc/woverflow/hytils/mixin/GuiNewChatMixin_LocrawHider.java b/src/main/java/org/polyfrost/hytils/mixin/GuiNewChatMixin_LocrawHider.java similarity index 96% rename from src/main/java/cc/woverflow/hytils/mixin/GuiNewChatMixin_LocrawHider.java rename to src/main/java/org/polyfrost/hytils/mixin/GuiNewChatMixin_LocrawHider.java index 2be2d9a4..a55d606b 100644 --- a/src/main/java/cc/woverflow/hytils/mixin/GuiNewChatMixin_LocrawHider.java +++ b/src/main/java/org/polyfrost/hytils/mixin/GuiNewChatMixin_LocrawHider.java @@ -16,15 +16,15 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.mixin; +package org.polyfrost.hytils.mixin; import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; -import cc.woverflow.hytils.HytilsReborn; +import org.polyfrost.hytils.HytilsReborn; import net.minecraft.client.Minecraft; import net.minecraft.client.gui.ChatLine; import net.minecraft.client.gui.GuiNewChat; import net.minecraft.util.IChatComponent; -import cc.woverflow.hytils.config.HytilsConfig; +import org.polyfrost.hytils.config.HytilsConfig; import org.spongepowered.asm.mixin.Final; import org.spongepowered.asm.mixin.Mixin; import org.spongepowered.asm.mixin.Shadow; diff --git a/src/main/java/cc/woverflow/hytils/mixin/GuiPlayerTabOverlayMixin_HideNPCs.java b/src/main/java/org/polyfrost/hytils/mixin/GuiPlayerTabOverlayMixin_HideNPCs.java similarity index 94% rename from src/main/java/cc/woverflow/hytils/mixin/GuiPlayerTabOverlayMixin_HideNPCs.java rename to src/main/java/org/polyfrost/hytils/mixin/GuiPlayerTabOverlayMixin_HideNPCs.java index 803c12be..470f970c 100644 --- a/src/main/java/cc/woverflow/hytils/mixin/GuiPlayerTabOverlayMixin_HideNPCs.java +++ b/src/main/java/org/polyfrost/hytils/mixin/GuiPlayerTabOverlayMixin_HideNPCs.java @@ -16,9 +16,9 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.mixin; +package org.polyfrost.hytils.mixin; -import cc.woverflow.hytils.handlers.lobby.npc.NPCHandler; +import org.polyfrost.hytils.handlers.lobby.npc.NPCHandler; import net.minecraft.client.gui.GuiPlayerTabOverlay; import net.minecraft.client.network.NetHandlerPlayClient; import net.minecraft.client.network.NetworkPlayerInfo; diff --git a/src/main/java/cc/woverflow/hytils/mixin/GuiPlayerTabOverlayMixin_HidePing.java b/src/main/java/org/polyfrost/hytils/mixin/GuiPlayerTabOverlayMixin_HidePing.java similarity index 94% rename from src/main/java/cc/woverflow/hytils/mixin/GuiPlayerTabOverlayMixin_HidePing.java rename to src/main/java/org/polyfrost/hytils/mixin/GuiPlayerTabOverlayMixin_HidePing.java index a6143f55..8b971f51 100644 --- a/src/main/java/cc/woverflow/hytils/mixin/GuiPlayerTabOverlayMixin_HidePing.java +++ b/src/main/java/org/polyfrost/hytils/mixin/GuiPlayerTabOverlayMixin_HidePing.java @@ -16,9 +16,9 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.mixin; +package org.polyfrost.hytils.mixin; -import cc.woverflow.hytils.handlers.lobby.tab.TabChanger; +import org.polyfrost.hytils.handlers.lobby.tab.TabChanger; import net.minecraft.client.gui.GuiPlayerTabOverlay; import net.minecraft.client.network.NetworkPlayerInfo; import org.spongepowered.asm.mixin.Mixin; diff --git a/src/main/java/cc/woverflow/hytils/mixin/GuiPlayerTabOverlayMixin_RemoveAds.java b/src/main/java/org/polyfrost/hytils/mixin/GuiPlayerTabOverlayMixin_RemoveAds.java similarity index 95% rename from src/main/java/cc/woverflow/hytils/mixin/GuiPlayerTabOverlayMixin_RemoveAds.java rename to src/main/java/org/polyfrost/hytils/mixin/GuiPlayerTabOverlayMixin_RemoveAds.java index fc208acb..10bcb009 100644 --- a/src/main/java/cc/woverflow/hytils/mixin/GuiPlayerTabOverlayMixin_RemoveAds.java +++ b/src/main/java/org/polyfrost/hytils/mixin/GuiPlayerTabOverlayMixin_RemoveAds.java @@ -16,9 +16,9 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.mixin; +package org.polyfrost.hytils.mixin; -import cc.woverflow.hytils.handlers.lobby.tab.TabChanger; +import org.polyfrost.hytils.handlers.lobby.tab.TabChanger; import net.minecraft.client.gui.FontRenderer; import net.minecraft.client.gui.GuiPlayerTabOverlay; import org.spongepowered.asm.mixin.Mixin; diff --git a/src/main/java/cc/woverflow/hytils/mixin/LayerArmorBaseMixin_HideIngameArmour.java b/src/main/java/org/polyfrost/hytils/mixin/LayerArmorBaseMixin_HideIngameArmour.java similarity index 97% rename from src/main/java/cc/woverflow/hytils/mixin/LayerArmorBaseMixin_HideIngameArmour.java rename to src/main/java/org/polyfrost/hytils/mixin/LayerArmorBaseMixin_HideIngameArmour.java index 284d184d..1c144355 100644 --- a/src/main/java/cc/woverflow/hytils/mixin/LayerArmorBaseMixin_HideIngameArmour.java +++ b/src/main/java/org/polyfrost/hytils/mixin/LayerArmorBaseMixin_HideIngameArmour.java @@ -16,12 +16,12 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.mixin; +package org.polyfrost.hytils.mixin; import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; import cc.polyfrost.oneconfig.utils.hypixel.LocrawInfo; import cc.polyfrost.oneconfig.utils.hypixel.LocrawUtil; -import cc.woverflow.hytils.config.HytilsConfig; +import org.polyfrost.hytils.config.HytilsConfig; import net.minecraft.client.renderer.entity.layers.LayerArmorBase; import net.minecraft.entity.EntityLivingBase; import net.minecraft.item.Item; diff --git a/src/main/java/cc/woverflow/hytils/mixin/MinecraftMixin_LeftClickInteract.java b/src/main/java/org/polyfrost/hytils/mixin/MinecraftMixin_LeftClickInteract.java similarity index 98% rename from src/main/java/cc/woverflow/hytils/mixin/MinecraftMixin_LeftClickInteract.java rename to src/main/java/org/polyfrost/hytils/mixin/MinecraftMixin_LeftClickInteract.java index 588fa131..5c1444e7 100644 --- a/src/main/java/cc/woverflow/hytils/mixin/MinecraftMixin_LeftClickInteract.java +++ b/src/main/java/org/polyfrost/hytils/mixin/MinecraftMixin_LeftClickInteract.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.mixin; +package org.polyfrost.hytils.mixin; import net.minecraft.client.Minecraft; import net.minecraft.client.entity.EntityPlayerSP; diff --git a/src/main/java/cc/woverflow/hytils/mixin/MinecraftMixin_LimboLimiter.java b/src/main/java/org/polyfrost/hytils/mixin/MinecraftMixin_LimboLimiter.java similarity index 90% rename from src/main/java/cc/woverflow/hytils/mixin/MinecraftMixin_LimboLimiter.java rename to src/main/java/org/polyfrost/hytils/mixin/MinecraftMixin_LimboLimiter.java index cdc41feb..4af5d5b3 100644 --- a/src/main/java/cc/woverflow/hytils/mixin/MinecraftMixin_LimboLimiter.java +++ b/src/main/java/org/polyfrost/hytils/mixin/MinecraftMixin_LimboLimiter.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.mixin; +package org.polyfrost.hytils.mixin; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.lobby.limbo.LimboLimiter; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.lobby.limbo.LimboLimiter; import net.minecraft.client.Minecraft; import org.spongepowered.asm.mixin.Mixin; import org.spongepowered.asm.mixin.injection.At; diff --git a/src/main/java/cc/woverflow/hytils/mixin/RenderEntityItemMixin_UHCOverlay.java b/src/main/java/org/polyfrost/hytils/mixin/RenderEntityItemMixin_UHCOverlay.java similarity index 96% rename from src/main/java/cc/woverflow/hytils/mixin/RenderEntityItemMixin_UHCOverlay.java rename to src/main/java/org/polyfrost/hytils/mixin/RenderEntityItemMixin_UHCOverlay.java index 5172ce31..5750446d 100644 --- a/src/main/java/cc/woverflow/hytils/mixin/RenderEntityItemMixin_UHCOverlay.java +++ b/src/main/java/org/polyfrost/hytils/mixin/RenderEntityItemMixin_UHCOverlay.java @@ -16,12 +16,12 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.mixin; +package org.polyfrost.hytils.mixin; import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; import cc.polyfrost.oneconfig.utils.hypixel.LocrawInfo; import cc.polyfrost.oneconfig.utils.hypixel.LocrawUtil; -import cc.woverflow.hytils.config.HytilsConfig; +import org.polyfrost.hytils.config.HytilsConfig; import net.minecraft.client.renderer.GlStateManager; import net.minecraft.client.renderer.entity.RenderEntityItem; import net.minecraft.client.resources.model.IBakedModel; diff --git a/src/main/java/cc/woverflow/hytils/mixin/beds/BlockModelShapesMixin.java b/src/main/java/org/polyfrost/hytils/mixin/beds/BlockModelShapesMixin.java similarity index 95% rename from src/main/java/cc/woverflow/hytils/mixin/beds/BlockModelShapesMixin.java rename to src/main/java/org/polyfrost/hytils/mixin/beds/BlockModelShapesMixin.java index 38690e5c..02a0e8c2 100644 --- a/src/main/java/cc/woverflow/hytils/mixin/beds/BlockModelShapesMixin.java +++ b/src/main/java/org/polyfrost/hytils/mixin/beds/BlockModelShapesMixin.java @@ -16,9 +16,9 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.mixin.beds; +package org.polyfrost.hytils.mixin.beds; -import cc.woverflow.hytils.hooks.BedModelHook; +import org.polyfrost.hytils.hooks.BedModelHook; import net.minecraft.block.state.IBlockState; import net.minecraft.client.Minecraft; import net.minecraft.client.renderer.BlockModelShapes; diff --git a/src/main/java/cc/woverflow/hytils/mixin/beds/BlockRendererDispatcherMixin.java b/src/main/java/org/polyfrost/hytils/mixin/beds/BlockRendererDispatcherMixin.java similarity index 95% rename from src/main/java/cc/woverflow/hytils/mixin/beds/BlockRendererDispatcherMixin.java rename to src/main/java/org/polyfrost/hytils/mixin/beds/BlockRendererDispatcherMixin.java index e5138e1b..10fa7c5a 100644 --- a/src/main/java/cc/woverflow/hytils/mixin/beds/BlockRendererDispatcherMixin.java +++ b/src/main/java/org/polyfrost/hytils/mixin/beds/BlockRendererDispatcherMixin.java @@ -16,9 +16,9 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.mixin.beds; +package org.polyfrost.hytils.mixin.beds; -import cc.woverflow.hytils.hooks.BedModelHook; +import org.polyfrost.hytils.hooks.BedModelHook; import net.minecraft.block.state.IBlockState; import net.minecraft.client.renderer.BlockRendererDispatcher; import net.minecraft.client.resources.model.IBakedModel; diff --git a/src/main/java/cc/woverflow/hytils/mixin/beds/ModelLoaderMixin.java b/src/main/java/org/polyfrost/hytils/mixin/beds/ModelLoaderMixin.java similarity index 92% rename from src/main/java/cc/woverflow/hytils/mixin/beds/ModelLoaderMixin.java rename to src/main/java/org/polyfrost/hytils/mixin/beds/ModelLoaderMixin.java index 18ac9ffe..302d62bd 100644 --- a/src/main/java/cc/woverflow/hytils/mixin/beds/ModelLoaderMixin.java +++ b/src/main/java/org/polyfrost/hytils/mixin/beds/ModelLoaderMixin.java @@ -16,10 +16,10 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.mixin.beds; +package org.polyfrost.hytils.mixin.beds; -import cc.woverflow.hytils.handlers.cache.BedLocationHandler; -import cc.woverflow.hytils.hooks.BedModelHook; +import org.polyfrost.hytils.handlers.cache.BedLocationHandler; +import org.polyfrost.hytils.hooks.BedModelHook; import net.minecraft.util.ResourceLocation; import net.minecraftforge.client.model.ModelLoader; import org.spongepowered.asm.mixin.Final; diff --git a/src/main/java/cc/woverflow/hytils/mixin/cosmetics/RenderEntityItemMixin.java b/src/main/java/org/polyfrost/hytils/mixin/cosmetics/RenderEntityItemMixin.java similarity index 94% rename from src/main/java/cc/woverflow/hytils/mixin/cosmetics/RenderEntityItemMixin.java rename to src/main/java/org/polyfrost/hytils/mixin/cosmetics/RenderEntityItemMixin.java index 9f0355b7..8ca58e07 100644 --- a/src/main/java/cc/woverflow/hytils/mixin/cosmetics/RenderEntityItemMixin.java +++ b/src/main/java/org/polyfrost/hytils/mixin/cosmetics/RenderEntityItemMixin.java @@ -16,12 +16,12 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.mixin.cosmetics; +package org.polyfrost.hytils.mixin.cosmetics; import cc.polyfrost.oneconfig.utils.hypixel.LocrawInfo; import cc.polyfrost.oneconfig.utils.hypixel.LocrawUtil; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.cache.CosmeticsHandler; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.cache.CosmeticsHandler; import net.minecraft.block.BlockPumpkin; import net.minecraft.client.renderer.entity.RenderEntityItem; import net.minecraft.entity.item.EntityItem; diff --git a/src/main/java/cc/woverflow/hytils/mixin/cosmetics/WorldMixin.java b/src/main/java/org/polyfrost/hytils/mixin/cosmetics/WorldMixin.java similarity index 93% rename from src/main/java/cc/woverflow/hytils/mixin/cosmetics/WorldMixin.java rename to src/main/java/org/polyfrost/hytils/mixin/cosmetics/WorldMixin.java index 75739bb0..1b0a5d82 100644 --- a/src/main/java/cc/woverflow/hytils/mixin/cosmetics/WorldMixin.java +++ b/src/main/java/org/polyfrost/hytils/mixin/cosmetics/WorldMixin.java @@ -16,12 +16,12 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.mixin.cosmetics; +package org.polyfrost.hytils.mixin.cosmetics; import cc.polyfrost.oneconfig.utils.hypixel.LocrawInfo; import cc.polyfrost.oneconfig.utils.hypixel.LocrawUtil; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.handlers.cache.CosmeticsHandler; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.handlers.cache.CosmeticsHandler; import net.minecraft.util.EnumParticleTypes; import net.minecraft.world.World; import org.spongepowered.asm.mixin.Mixin; diff --git a/src/main/java/cc/woverflow/hytils/mixin/lineseparator/GuiNewChatMixin.java b/src/main/java/org/polyfrost/hytils/mixin/lineseparator/GuiNewChatMixin.java similarity index 95% rename from src/main/java/cc/woverflow/hytils/mixin/lineseparator/GuiNewChatMixin.java rename to src/main/java/org/polyfrost/hytils/mixin/lineseparator/GuiNewChatMixin.java index b10663be..44692ed6 100644 --- a/src/main/java/cc/woverflow/hytils/mixin/lineseparator/GuiNewChatMixin.java +++ b/src/main/java/org/polyfrost/hytils/mixin/lineseparator/GuiNewChatMixin.java @@ -16,9 +16,9 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.mixin.lineseparator; +package org.polyfrost.hytils.mixin.lineseparator; -import cc.woverflow.hytils.hooks.LineSeparatorEnhancements; +import org.polyfrost.hytils.hooks.LineSeparatorEnhancements; import net.minecraft.client.gui.GuiNewChat; import net.minecraft.util.IChatComponent; import org.spongepowered.asm.mixin.Mixin; diff --git a/src/main/java/cc/woverflow/hytils/mixin/lineseparator/GuiUtilRenderComponentsMixin.java b/src/main/java/org/polyfrost/hytils/mixin/lineseparator/GuiUtilRenderComponentsMixin.java similarity index 93% rename from src/main/java/cc/woverflow/hytils/mixin/lineseparator/GuiUtilRenderComponentsMixin.java rename to src/main/java/org/polyfrost/hytils/mixin/lineseparator/GuiUtilRenderComponentsMixin.java index 31b36141..3c8a1c71 100644 --- a/src/main/java/cc/woverflow/hytils/mixin/lineseparator/GuiUtilRenderComponentsMixin.java +++ b/src/main/java/org/polyfrost/hytils/mixin/lineseparator/GuiUtilRenderComponentsMixin.java @@ -16,9 +16,9 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.mixin.lineseparator; +package org.polyfrost.hytils.mixin.lineseparator; -import cc.woverflow.hytils.hooks.LineSeparatorEnhancements; +import org.polyfrost.hytils.hooks.LineSeparatorEnhancements; import net.minecraft.client.gui.GuiUtilRenderComponents; import net.minecraft.util.IChatComponent; import org.spongepowered.asm.mixin.Dynamic; diff --git a/src/main/java/cc/woverflow/hytils/mixin/overlay/BlockModelRendererMixin_NoOptiFine.java b/src/main/java/org/polyfrost/hytils/mixin/overlay/BlockModelRendererMixin_NoOptiFine.java similarity index 96% rename from src/main/java/cc/woverflow/hytils/mixin/overlay/BlockModelRendererMixin_NoOptiFine.java rename to src/main/java/org/polyfrost/hytils/mixin/overlay/BlockModelRendererMixin_NoOptiFine.java index cae05fa6..38a2db3e 100644 --- a/src/main/java/cc/woverflow/hytils/mixin/overlay/BlockModelRendererMixin_NoOptiFine.java +++ b/src/main/java/org/polyfrost/hytils/mixin/overlay/BlockModelRendererMixin_NoOptiFine.java @@ -16,9 +16,9 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.mixin.overlay; +package org.polyfrost.hytils.mixin.overlay; -import cc.woverflow.hytils.hooks.BlockModelRendererHook; +import org.polyfrost.hytils.hooks.BlockModelRendererHook; import net.minecraft.block.Block; import net.minecraft.client.renderer.BlockModelRenderer; import net.minecraft.client.renderer.WorldRenderer; diff --git a/src/main/java/cc/woverflow/hytils/mixin/overlay/BlockModelRendererMixin_OptiFine.java b/src/main/java/org/polyfrost/hytils/mixin/overlay/BlockModelRendererMixin_OptiFine.java similarity index 97% rename from src/main/java/cc/woverflow/hytils/mixin/overlay/BlockModelRendererMixin_OptiFine.java rename to src/main/java/org/polyfrost/hytils/mixin/overlay/BlockModelRendererMixin_OptiFine.java index 69e9c409..1840cf29 100644 --- a/src/main/java/cc/woverflow/hytils/mixin/overlay/BlockModelRendererMixin_OptiFine.java +++ b/src/main/java/org/polyfrost/hytils/mixin/overlay/BlockModelRendererMixin_OptiFine.java @@ -16,9 +16,9 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.mixin.overlay; +package org.polyfrost.hytils.mixin.overlay; -import cc.woverflow.hytils.hooks.BlockModelRendererHook; +import org.polyfrost.hytils.hooks.BlockModelRendererHook; import net.minecraft.block.state.IBlockState; import net.minecraft.client.renderer.BlockModelRenderer; import net.minecraft.client.renderer.WorldRenderer; diff --git a/src/main/java/cc/woverflow/hytils/mixin/overlay/VertexLighterFlatMixin.java b/src/main/java/org/polyfrost/hytils/mixin/overlay/VertexLighterFlatMixin.java similarity index 91% rename from src/main/java/cc/woverflow/hytils/mixin/overlay/VertexLighterFlatMixin.java rename to src/main/java/org/polyfrost/hytils/mixin/overlay/VertexLighterFlatMixin.java index 12fc1933..d2743819 100644 --- a/src/main/java/cc/woverflow/hytils/mixin/overlay/VertexLighterFlatMixin.java +++ b/src/main/java/org/polyfrost/hytils/mixin/overlay/VertexLighterFlatMixin.java @@ -16,18 +16,18 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.mixin.overlay; +package org.polyfrost.hytils.mixin.overlay; import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils; -import cc.woverflow.hytils.config.HytilsConfig; -import cc.woverflow.hytils.util.DarkColorUtils; +import org.polyfrost.hytils.config.HytilsConfig; +import org.polyfrost.hytils.util.DarkColorUtils; import net.minecraft.block.BlockColored; import net.minecraft.block.material.MapColor; import net.minecraft.block.material.Material; import net.minecraftforge.client.model.pipeline.BlockInfo; import net.minecraftforge.client.model.pipeline.VertexLighterFlat; -import cc.woverflow.hytils.config.BlockHighlightConfig; -import cc.woverflow.hytils.handlers.cache.HeightHandler; +import org.polyfrost.hytils.config.BlockHighlightConfig; +import org.polyfrost.hytils.handlers.cache.HeightHandler; import org.spongepowered.asm.mixin.Final; import org.spongepowered.asm.mixin.Mixin; import org.spongepowered.asm.mixin.Shadow; diff --git a/src/main/java/cc/woverflow/hytils/util/DarkColorUtils.java b/src/main/java/org/polyfrost/hytils/util/DarkColorUtils.java similarity index 95% rename from src/main/java/cc/woverflow/hytils/util/DarkColorUtils.java rename to src/main/java/org/polyfrost/hytils/util/DarkColorUtils.java index b7f12a84..4f738033 100644 --- a/src/main/java/cc/woverflow/hytils/util/DarkColorUtils.java +++ b/src/main/java/org/polyfrost/hytils/util/DarkColorUtils.java @@ -16,13 +16,13 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.util; +package org.polyfrost.hytils.util; import cc.polyfrost.oneconfig.libs.caffeine.cache.Cache; import cc.polyfrost.oneconfig.libs.caffeine.cache.Caffeine; import cc.polyfrost.oneconfig.utils.color.ColorUtils; -import cc.woverflow.hytils.HytilsReborn; -import cc.woverflow.hytils.config.HytilsConfig; +import org.polyfrost.hytils.HytilsReborn; +import org.polyfrost.hytils.config.HytilsConfig; import java.util.Objects; import java.util.concurrent.LinkedBlockingQueue; diff --git a/src/main/java/cc/woverflow/hytils/util/HypixelAPIUtils.java b/src/main/java/org/polyfrost/hytils/util/HypixelAPIUtils.java similarity index 98% rename from src/main/java/cc/woverflow/hytils/util/HypixelAPIUtils.java rename to src/main/java/org/polyfrost/hytils/util/HypixelAPIUtils.java index adc9562d..92ea7acc 100644 --- a/src/main/java/cc/woverflow/hytils/util/HypixelAPIUtils.java +++ b/src/main/java/org/polyfrost/hytils/util/HypixelAPIUtils.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.util; +package org.polyfrost.hytils.util; import cc.polyfrost.oneconfig.events.event.LocrawEvent; import cc.polyfrost.oneconfig.events.event.Stage; @@ -25,9 +25,9 @@ import cc.polyfrost.oneconfig.utils.JsonUtils; import cc.polyfrost.oneconfig.utils.NetworkUtils; import cc.polyfrost.oneconfig.utils.hypixel.LocrawInfo; -import cc.woverflow.hytils.HytilsReborn; -import cc.woverflow.hytils.handlers.cache.HeightHandler; -import cc.woverflow.hytils.util.ranks.RankType; +import org.polyfrost.hytils.HytilsReborn; +import org.polyfrost.hytils.handlers.cache.HeightHandler; +import org.polyfrost.hytils.util.ranks.RankType; import com.google.gson.JsonArray; import com.google.gson.JsonElement; import com.google.gson.JsonObject; diff --git a/src/main/java/cc/woverflow/hytils/util/ScoreboardUtil.java b/src/main/java/org/polyfrost/hytils/util/ScoreboardUtil.java similarity index 98% rename from src/main/java/cc/woverflow/hytils/util/ScoreboardUtil.java rename to src/main/java/org/polyfrost/hytils/util/ScoreboardUtil.java index 19c37934..501f8f25 100644 --- a/src/main/java/cc/woverflow/hytils/util/ScoreboardUtil.java +++ b/src/main/java/org/polyfrost/hytils/util/ScoreboardUtil.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.util; +package org.polyfrost.hytils.util; import com.google.common.collect.Iterables; import com.google.common.collect.Lists; diff --git a/src/main/java/cc/woverflow/hytils/util/WaypointUtil.java b/src/main/java/org/polyfrost/hytils/util/WaypointUtil.java similarity index 99% rename from src/main/java/cc/woverflow/hytils/util/WaypointUtil.java rename to src/main/java/org/polyfrost/hytils/util/WaypointUtil.java index b4a91a1c..b8b1779a 100644 --- a/src/main/java/cc/woverflow/hytils/util/WaypointUtil.java +++ b/src/main/java/org/polyfrost/hytils/util/WaypointUtil.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.util; +package org.polyfrost.hytils.util; import net.minecraft.client.Minecraft; diff --git a/src/main/java/cc/woverflow/hytils/util/friends/FriendCache.java b/src/main/java/org/polyfrost/hytils/util/friends/FriendCache.java similarity index 98% rename from src/main/java/cc/woverflow/hytils/util/friends/FriendCache.java rename to src/main/java/org/polyfrost/hytils/util/friends/FriendCache.java index 2c5ccacb..23f8679b 100644 --- a/src/main/java/cc/woverflow/hytils/util/friends/FriendCache.java +++ b/src/main/java/org/polyfrost/hytils/util/friends/FriendCache.java @@ -16,11 +16,11 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.util.friends; +package org.polyfrost.hytils.util.friends; import cc.polyfrost.oneconfig.utils.Multithreading; import cc.polyfrost.oneconfig.utils.NetworkUtils; -import cc.woverflow.hytils.HytilsReborn; +import org.polyfrost.hytils.HytilsReborn; import com.google.gson.JsonElement; import com.google.gson.JsonObject; import net.minecraft.client.Minecraft; diff --git a/src/main/java/cc/woverflow/hytils/util/ranks/RankType.java b/src/main/java/org/polyfrost/hytils/util/ranks/RankType.java similarity index 97% rename from src/main/java/cc/woverflow/hytils/util/ranks/RankType.java rename to src/main/java/org/polyfrost/hytils/util/ranks/RankType.java index 56993f56..bc6d5be9 100644 --- a/src/main/java/cc/woverflow/hytils/util/ranks/RankType.java +++ b/src/main/java/org/polyfrost/hytils/util/ranks/RankType.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package cc.woverflow.hytils.util.ranks; +package org.polyfrost.hytils.util.ranks; public enum RankType { UNKNOWN("UNKNOWN"), NON("DEFAULT"), VIP("VIP"), VIP_PLUS("VIP_PLUS"), MVP("MVP"), MVP_PLUS("MVP_PLUS"), MVP_PLUS_PLUS("SUPERSTAR"), YOUTUBE("YOUTUBER"), GAME_MASTER("GAME_MASTER"), ADMIN("ADMIN"); diff --git a/src/main/resources/mixins.hytils.json b/src/main/resources/mixins.hytils.json index 685b7201..4ebb3ccf 100644 --- a/src/main/resources/mixins.hytils.json +++ b/src/main/resources/mixins.hytils.json @@ -1,8 +1,8 @@ { "compatibilityLevel": "JAVA_8", "minVersion": "0.7", - "package": "cc.woverflow.hytils.mixin", - "plugin": "cc.woverflow.hytils.forge.HytilsMixinPlugin", + "package": "org.polyfrost.hytils.mixin", + "plugin": "org.polyfrost.hytils.forge.HytilsMixinPlugin", "refmap": "mixins.hytils.refmap.json", "verbose": true, "client": [ diff --git a/versions/mainProject b/versions/mainProject new file mode 100644 index 00000000..dd1433e0 --- /dev/null +++ b/versions/mainProject @@ -0,0 +1 @@ +1.8.9-forge \ No newline at end of file