diff options
| author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-07-23 23:46:21 +0200 |
|---|---|---|
| committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-07-23 23:46:21 +0200 |
| commit | 0b8066fcd9c3318723a29ffadeb7e2fbfeb0250e (patch) | |
| tree | b9cefd6f22580e1ea7a08a496a7e62fe00c89045 /src/main/java/at/hannibal2/skyhanni/features/chat | |
| parent | f43bac23acf79325f9f4de060b69c5c0b1d870eb (diff) | |
| download | skyhanni-0b8066fcd9c3318723a29ffadeb7e2fbfeb0250e.tar.gz skyhanni-0b8066fcd9c3318723a29ffadeb7e2fbfeb0250e.tar.bz2 skyhanni-0b8066fcd9c3318723a29ffadeb7e2fbfeb0250e.zip | |
fixed names
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/chat')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/chat/PlayerDeathMessages.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/chat/PlayerDeathMessages.kt b/src/main/java/at/hannibal2/skyhanni/features/chat/PlayerDeathMessages.kt index 33e6fdd25..e2eae78f7 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/chat/PlayerDeathMessages.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/chat/PlayerDeathMessages.kt @@ -57,7 +57,7 @@ class PlayerDeathMessages { private fun checkOtherPlayers() { val location = LocationUtils.playerLocation() - for (otherPlayer in EntityUtils.getAllEntities<EntityOtherPlayerMP>() + for (otherPlayer in EntityUtils.getEntities<EntityOtherPlayerMP>() .filter { it.getLorenzVec().distance(location) < 25 }) { lastTimePlayerSeen[otherPlayer.name] = System.currentTimeMillis() } |
