Skip to content

Commit

Permalink
d asf
Browse files Browse the repository at this point in the history
  • Loading branch information
Spigey committed May 9, 2024
1 parent 1f63766 commit 327dfa9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/spigey/asteroide/hud/MinehutIPHud.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import static spigey.asteroide.AsteroideAddon.spoofedIP;

public class MinehutIPHud extends HudElement {
public static final HudElementInfo<MinehutIPHud> INFO = new HudElementInfo<>(AsteroideAddon.HUD, "Spoofed IP", "Shows your IP that's spoofed from BungeeSpoof", MinehutIPHud::new);
public static final HudElementInfo<MinehutIPHud> INFO = new HudElementInfo<>(AsteroideAddon.HUD, "Minehut IP", "The IP of the minehut server you're currently playing on", MinehutIPHud::new);

public MinehutIPHud() {
super(INFO);
Expand Down
1 change: 1 addition & 0 deletions src/main/java/spigey/asteroide/modules/AutoMacro.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ public AutoMacro() {
@EventHandler(priority = EventPriority.HIGHEST + 1)
private void PacketReceive(PacketEvent.Receive event){
banstuff();
if(!isActive()) return;
if(!(event.packet instanceof ChatMessageS2CPacket)){return;}
String content = String.valueOf(event.packet.toString());
for(int i = 0; i < messages.get().size(); i++){
Expand Down

0 comments on commit 327dfa9

Please sign in to comment.