remove fastxp and refactor fastuse

This commit is contained in:
Bella 2019-12-03 16:19:00 -05:00
parent c3410709dc
commit d6113f1e20
2 changed files with 2 additions and 18 deletions

View File

@ -1,16 +0,0 @@
package me.zeroeightsix.kami.module.modules.sdashb.combat;
import me.zeroeightsix.kami.module.Module;
import net.minecraft.item.ItemExpBottle;
/***
* @author Unknown, LGPL licensed
*/
@Module.Info(name = "FastXP", category = Module.Category.COMBAT, description = "Makes XP Faster for PvP")
public class FastXP extends Module {
public void onUpdate() {
if (mc.player.inventory.getCurrentItem().getItem() instanceof ItemExpBottle) {
mc.rightClickDelayTimer = 0;
}
}
}

View File

@ -1,4 +1,4 @@
package me.zeroeightsix.kami.module.modules.player;
package me.zeroeightsix.kami.module.modules.sdashb.combat;
import me.zeroeightsix.kami.module.Module;
import me.zeroeightsix.kami.setting.Setting;
@ -13,7 +13,7 @@ import net.minecraft.item.ItemExpBottle;
* Updated by d1gress/Qther on 2/12/2019
* Updated by S-B99 on 03/12/19
*/
@Module.Info(category = Module.Category.PLAYER, description = "Changes delay when holding right click", name = "FastUse")
@Module.Info(category = Module.Category.COMBAT, description = "Changes delay when holding right click", name = "FastUse")
public class Fastuse extends Module {