File tree Expand file tree Collapse file tree
src/main/java/cqb13/NumbyHack Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66import cqb13 .NumbyHack .modules .hud .*;
77import cqb13 .NumbyHack .utils .*;
88import meteordevelopment .meteorclient .addons .MeteorAddon ;
9- import meteordevelopment .meteorclient .systems . commands .Commands ;
9+ import meteordevelopment .meteorclient .commands .Commands ;
1010import meteordevelopment .meteorclient .systems .hud .Hud ;
1111import meteordevelopment .meteorclient .systems .hud .HudGroup ;
1212import meteordevelopment .meteorclient .systems .modules .Category ;
@@ -71,9 +71,9 @@ public void onInitialize() {
7171 Hud .get ().register (TextRadarHud .INFO );
7272
7373 Log ("Adding Commands..." );
74- Commands .get (). add (new Trash ());
75- Commands .get (). add (new HeadItem ());
76- Commands .get (). add (new ClearChat ());
74+ Commands .add (new Trash ());
75+ Commands .add (new HeadItem ());
76+ Commands .add (new ClearChat ());
7777
7878 Log ("Initialized successfully!" );
7979 }
Original file line number Diff line number Diff line change 11package cqb13 .NumbyHack .modules .commands ;
22
33import com .mojang .brigadier .builder .LiteralArgumentBuilder ;
4- import meteordevelopment .meteorclient .systems . commands .Command ;
4+ import meteordevelopment .meteorclient .commands .Command ;
55import net .minecraft .command .CommandSource ;
66
77import static com .mojang .brigadier .Command .SINGLE_SUCCESS ;
8+ import static meteordevelopment .meteorclient .MeteorClient .mc ;
89
910public class ClearChat extends Command {
1011 public ClearChat () {
Original file line number Diff line number Diff line change 11package cqb13 .NumbyHack .modules .commands ;
22
3- import cqb13 .NumbyHack .NumbyHack ;
43import cqb13 .NumbyHack .utils .CHMainUtils ;
54import com .mojang .brigadier .builder .LiteralArgumentBuilder ;
6- import meteordevelopment .meteorclient .systems . commands .Command ;
5+ import meteordevelopment .meteorclient .commands .Command ;
76import net .minecraft .screen .slot .SlotActionType ;
87
8+ import static meteordevelopment .meteorclient .MeteorClient .mc ;
9+
910public class HeadItem extends Command {
1011 public HeadItem () {
1112 super ("head-item" , "Allows you to put any item in your head slot." , "head" );
Original file line number Diff line number Diff line change 44import com .mojang .brigadier .builder .LiteralArgumentBuilder ;
55import it .unimi .dsi .fastutil .ints .Int2ObjectMap ;
66import it .unimi .dsi .fastutil .ints .Int2ObjectOpenHashMap ;
7- import meteordevelopment .meteorclient .systems . commands .Command ;
7+ import meteordevelopment .meteorclient .commands .Command ;
88import net .minecraft .command .CommandSource ;
99import net .minecraft .item .ItemStack ;
1010import net .minecraft .network .packet .c2s .play .ClickSlotC2SPacket ;
1616import java .util .List ;
1717
1818import static com .mojang .brigadier .Command .SINGLE_SUCCESS ;
19+ import static meteordevelopment .meteorclient .MeteorClient .mc ;
1920
2021public class Trash extends Command {
2122 public Trash () {
You can’t perform that action at this time.
0 commit comments