fix missing descriptions

This commit is contained in:
Bella 2019-12-14 19:41:46 -05:00
parent fc06b8c3de
commit 7c8c529962
9 changed files with 9 additions and 9 deletions

View File

@ -10,7 +10,7 @@ import net.minecraft.network.play.client.CPacketAnimation;
* Made by FINZ0
*/
@Module.Info(name = "NoSwing", category = Module.Category.PLAYER)
@Module.Info(name = "NoSwing", category = Module.Category.PLAYER, description = "Cancels server and client swinging packets")
public class
NoSwing extends Module {

View File

@ -4,7 +4,7 @@ import me.zeroeightsix.kami.command.Command;
import me.zeroeightsix.kami.module.Module;
import net.minecraft.client.Minecraft;
@Module.Info(name = "ShulkerBypass", category = Module.Category.RENDER)
@Module.Info(name = "ShulkerBypass", category = Module.Category.RENDER, description = "Bypasses the shulker preview patch on 2b2t")
public class ShulkerBypass extends Module {
public void onEnable() {
if (Minecraft.getMinecraft().player == null) return;

View File

@ -9,7 +9,7 @@ import net.minecraft.network.play.server.SPacketPlayerPosLook;
/**
* Created by 086 on 12/12/2017.
*/
@Module.Info(name = "AntiForceLook", category = Module.Category.PLAYER)
@Module.Info(name = "AntiForceLook", category = Module.Category.PLAYER, description = "Stops packets from turning your head")
public class AntiForceLook extends Module {
@EventHandler

View File

@ -11,7 +11,7 @@ import net.minecraft.item.ItemStack;
/**
* Created by 086 on 24/01/2018.
*/
@Module.Info(name = "AutoArmour", category = Module.Category.PLAYER)
@Module.Info(name = "AutoArmour", category = Module.Category.PLAYER, description = "Automatically equips armour")
public class AutoArmour extends Module {
@Override

View File

@ -15,7 +15,7 @@ import java.util.Queue;
* Created by 086 on 24/01/2018.
* Edited by Cuhnt on 30/7/2019
*/
@Module.Info(name = "Blink", category = Module.Category.PLAYER)
@Module.Info(name = "Blink", category = Module.Category.PLAYER, description = "Cancels server side packets")
public class Blink extends Module {
Queue<CPacketPlayer> packets = new LinkedList<>();

View File

@ -8,7 +8,7 @@ import net.minecraft.util.math.MathHelper;
/**
* Created by 086 on 16/12/2017.
*/
@Module.Info(name = "PitchLock", category = Module.Category.PLAYER)
@Module.Info(name = "PitchLock", category = Module.Category.PLAYER, description = "Locks your camera yaw")
public class PitchLock extends Module {
private Setting<Boolean> auto = register(Settings.b("Auto", true));
private Setting<Float> pitch = register(Settings.f("Pitch", 180));

View File

@ -9,7 +9,7 @@ import net.minecraft.network.play.client.CPacketConfirmTeleport;
/**
* Created by GlowskiBroski on 10/14/2018.
*/
@Module.Info(name = "PortalGodMode", category = Module.Category.PLAYER)
@Module.Info(name = "PortalGodMode", category = Module.Category.PLAYER, description = "Don't take damage in portals")
public class PortalGodMode extends Module {
@EventHandler

View File

@ -16,7 +16,7 @@ import net.minecraft.util.math.Vec3d;
import static me.zeroeightsix.kami.util.BlockInteractionHelper.*;
@Module.Info(name = "Scaffold", category = Module.Category.PLAYER)
@Module.Info(name = "Scaffold", category = Module.Category.PLAYER, description = "Places blocks under you")
public class Scaffold extends Module {
private Setting<Integer> future = register(Settings.integerBuilder("Ticks").withMinimum(0).withMaximum(60).withValue(2));

View File

@ -8,7 +8,7 @@ import net.minecraft.util.math.MathHelper;
/**
* Created by 086 on 16/12/2017.
*/
@Module.Info(name = "YawLock", category = Module.Category.PLAYER)
@Module.Info(name = "YawLock", category = Module.Category.PLAYER, description = "Locks your camera yaw")
public class YawLock extends Module {
private Setting<Boolean> auto = register(Settings.b("Auto", true));
private Setting<Float> yaw = register(Settings.f("Yaw", 180));