who needs git log anyway

This commit is contained in:
Cloudburst
2021-04-12 16:22:35 +02:00
parent 515a763adc
commit 8f8e35be6d
22 changed files with 743 additions and 579 deletions

View File

@@ -1,8 +1,8 @@
package cloudburst.rejects;
import minegame159.meteorclient.MeteorAddon;
import minegame159.meteorclient.commands.Commands;
import minegame159.meteorclient.modules.Modules;
import minegame159.meteorclient.systems.commands.Commands;
import minegame159.meteorclient.systems.modules.Modules;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
@@ -17,13 +17,17 @@ public class MeteorRejectsAddon extends MeteorAddon {
public void onInitialize() {
LOG.info("Initializing Meteor Rejects Addon");
Modules.get().add(new AutoMountBypassDupe());
Modules.get().add(new AutoPot());
Modules.get().add(new Lavacast());
Modules.get().add(new RenderInvisible());
Modules modules = Modules.get();
modules.add(new AutoPot());
modules.add(new Confuse());
modules.add(new Glide());
modules.add(new Lavacast());
modules.add(new RenderInvisible());
modules.add(new SoundLocator());
Commands.get().add(new BookDupeCommand());
Commands.get().add(new GiveCommand());
Commands.get().add(new Notebot());
Commands commands = Commands.get();
commands.add(new AntiAntiXrayCommand());
commands.add(new BookDupeCommand());
commands.add(new GiveCommand());
}
}