Skip to content

Commit

Permalink
dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Spigey committed May 13, 2024
1 parent 3a585f8 commit caca5bc
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/spigey/asteroide/AsteroideAddon.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ public void onInitialize() {
addModule(new MinehutAutoJoinRandomModule());
addModule(new AutoLoginModule());
addModule(new InvCleanerModule());
addModule(new BorderNoclipModule());

// Commands
addCommand(new CrashAll());
Expand Down
19 changes: 19 additions & 0 deletions src/main/java/spigey/asteroide/modules/BorderNoclipModule.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package spigey.asteroide.modules;

import meteordevelopment.meteorclient.events.world.TickEvent;
import meteordevelopment.meteorclient.systems.modules.Module;
import meteordevelopment.orbit.EventHandler;
import spigey.asteroide.AsteroideAddon;

public class BorderNoclipModule extends Module {
public BorderNoclipModule() {
super(AsteroideAddon.CATEGORY, "", "");
}
@EventHandler
public void onTick(TickEvent.Post event){
assert mc.world != null;
info(mc.world.getWorldBorder().toString());
}
}


0 comments on commit caca5bc

Please sign in to comment.