forked from RepoMirrors/kami-blue
remove fastxp and refactor fastuse
This commit is contained in:
parent
c3410709dc
commit
d6113f1e20
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -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 {
|
||||
|
||||
|
Loading…
Reference in New Issue