summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/test/command
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2023-11-02 22:20:32 +0100
committerGitHub <noreply@github.com>2023-11-02 22:20:32 +0100
commit7df75c9469bedda34ffce42273abc96f952f613a (patch)
treee8916f3a0964e65d28197ee1247916eec2b97a83 /src/main/java/at/hannibal2/skyhanni/test/command
parent2ce84766100584a5aaf516a2cbf0907585aaa07e (diff)
downloadskyhanni-7df75c9469bedda34ffce42273abc96f952f613a.tar.gz
skyhanni-7df75c9469bedda34ffce42273abc96f952f613a.tar.bz2
skyhanni-7df75c9469bedda34ffce42273abc96f952f613a.zip
Add visitor highlighter/blocker (#653)
Added Highlight Visitors in SkyBlock. Block Interacting with Visitors. #653
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/test/command')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/test/command/CopyNearbyEntitiesCommand.kt3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/test/command/CopyNearbyEntitiesCommand.kt b/src/main/java/at/hannibal2/skyhanni/test/command/CopyNearbyEntitiesCommand.kt
index b7c4ae4a1..97cd1c4ee 100644
--- a/src/main/java/at/hannibal2/skyhanni/test/command/CopyNearbyEntitiesCommand.kt
+++ b/src/main/java/at/hannibal2/skyhanni/test/command/CopyNearbyEntitiesCommand.kt
@@ -45,6 +45,7 @@ object CopyNearbyEntitiesCommand {
resultList.add("name: '" + entity.name + "'")
resultList.add("displayName: '${displayName.formattedText}'")
resultList.add("entityId: ${entity.entityId}")
+ resultList.add("uuid version: ${entity.uniqueID.version()} ${if(entity.uniqueID.version() != 4) "NPC " else ""}(${entity.uniqueID})")
resultList.add("location data:")
resultList.add("- vec: $vec")
resultList.add("- distance: $distance")
@@ -167,4 +168,4 @@ object CopyNearbyEntitiesCommand {
resultList.add("- type: $type")
}
}
-} \ No newline at end of file
+}