diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-04-10 20:54:07 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-04-10 20:54:07 +0200 |
commit | 28bc87528709c76d85d90c065d428ef9c31d2bbb (patch) | |
tree | d18746aadaa1f51e030ec8faece8766a84297d7a /src/main/java/at/hannibal2/skyhanni/features/dungeon | |
parent | bc33d91ec58ecd4dd782485c48385dfad79522c2 (diff) | |
download | skyhanni-28bc87528709c76d85d90c065d428ef9c31d2bbb.tar.gz skyhanni-28bc87528709c76d85d90c065d428ef9c31d2bbb.tar.bz2 skyhanni-28bc87528709c76d85d90c065d428ef9c31d2bbb.zip |
Hide own player name or hypixel watchdog player names from visitor detection
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/dungeon')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonCopilot.kt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonCopilot.kt b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonCopilot.kt index 8b696ad61..bb3be6d0d 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonCopilot.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonCopilot.kt @@ -5,7 +5,6 @@ import at.hannibal2.skyhanni.events.* import at.hannibal2.skyhanni.utils.LorenzUtils import at.hannibal2.skyhanni.utils.RenderUtils.renderString import at.hannibal2.skyhanni.utils.StringUtils.matchRegex -import net.minecraft.client.Minecraft import net.minecraft.entity.item.EntityArmorStand import net.minecraftforge.event.world.WorldEvent import net.minecraftforge.fml.common.eventhandler.SubscribeEvent @@ -25,7 +24,7 @@ class DungeonCopilot { changeNextStep("Ready up") } if (message.endsWith("§a is now ready!")) { - var name = Minecraft.getMinecraft().thePlayer.name + var name = LorenzUtils.getPlayerName() if (message.contains(name)) { changeNextStep("Wait for the dungeon to start!") } |