Skip to content

Commit

Permalink
added nofall mode Rettungsplatform
Browse files Browse the repository at this point in the history
split-up nofall modes into their own files
extracted functions from NoFall that are used by others
  • Loading branch information
1zun4 committed Dec 7, 2023
1 parent 7c464c8 commit 7897d7a
Show file tree
Hide file tree
Showing 15 changed files with 596 additions and 316 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ import net.ccbluex.liquidbounce.features.module.modules.movement.autododge.Modul
import net.ccbluex.liquidbounce.features.module.modules.movement.speed.ModuleSpeed
import net.ccbluex.liquidbounce.features.module.modules.player.*
import net.ccbluex.liquidbounce.features.module.modules.player.invcleaner.ModuleInventoryCleaner
import net.ccbluex.liquidbounce.features.module.modules.player.nofall.ModuleNoFall
import net.ccbluex.liquidbounce.features.module.modules.render.*
import net.ccbluex.liquidbounce.features.module.modules.render.minimap.ModuleMinimap
import net.ccbluex.liquidbounce.features.module.modules.render.nametags.ModuleNametags
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
/*
* This file is part of LiquidBounce (https://github.com/CCBlueX/LiquidBounce)
*
* Copyright (c) 2015 - 2023 CCBlueX
*
* LiquidBounce is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* LiquidBounce is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with LiquidBounce. If not, see <https://www.gnu.org/licenses/>.
*
*/

package net.ccbluex.liquidbounce.features.module.modules.player.nofall

import net.ccbluex.liquidbounce.features.module.Category
import net.ccbluex.liquidbounce.features.module.Module
import net.ccbluex.liquidbounce.features.module.modules.player.nofall.modes.*

/**
* NoFall module
*
* Protects you from taking fall damage.
*/

object ModuleNoFall : Module("NoFall", Category.PLAYER) {

internal val modes = choices(
"Mode", SpoofGround, arrayOf(
SpoofGround,
NoGround,
Packet,
MLG,
Rettungsplatform,
Spartan524Flag,
Vulcan,
Verus,
)
)

}
Loading

0 comments on commit 7897d7a

Please sign in to comment.