Skip to content
This repository has been archived by the owner on Aug 14, 2024. It is now read-only.

Commit

Permalink
Remove Ghost and Fun catagory
Browse files Browse the repository at this point in the history
I might readd them
  • Loading branch information
ManInMyVan committed Dec 1, 2023
1 parent 6f0dd65 commit 09cece0
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ enum class ModuleCategory(val displayName: String) {
MOVEMENT("Movement"),
RENDER("Render"),
CLIENT("Client"),
GHOST("Ghost"),
WORLD("World"),
MISC("Misc"),
EXPLOIT("Exploit"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import net.ccbluex.liquidbounce.utils.misc.RandomUtils.nextFloat
import net.ccbluex.liquidbounce.value.BoolValue
import net.ccbluex.liquidbounce.value.FloatValue

object Derp : Module("Derp", ModuleCategory.FUN, subjective = true) {
object Derp : Module("Derp", ModuleCategory.MISC, subjective = true) {

private val headless by BoolValue("Headless", false)
private val spinny by BoolValue("Spinny", false)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import net.ccbluex.liquidbounce.value.IntegerValue
import net.minecraft.entity.player.EnumPlayerModelParts
import kotlin.random.Random.Default.nextBoolean

object SkinDerp : Module("SkinDerp", ModuleCategory.FUN, subjective = true) {
object SkinDerp : Module("SkinDerp", ModuleCategory.MISC, subjective = true) {

private val delay by IntegerValue("Delay", 0, 0..1000)
private val hat by BoolValue("Hat", true)
Expand Down

0 comments on commit 09cece0

Please sign in to comment.