From 6c2cf2a80cea9fe75b856acdb00f4b5c0859e9bf Mon Sep 17 00:00:00 2001 From: Kris Date: Tue, 24 Dec 2024 10:10:17 +0200 Subject: [PATCH] refactor: rename "active" to "idle" in npc info This is to bring it in line with player info logging. --- .../net/rsprox/transcriber/text/TextNpcInfoTranscriber.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transcriber/src/main/kotlin/net/rsprox/transcriber/text/TextNpcInfoTranscriber.kt b/transcriber/src/main/kotlin/net/rsprox/transcriber/text/TextNpcInfoTranscriber.kt index a74d67e3..2396cfe5 100644 --- a/transcriber/src/main/kotlin/net/rsprox/transcriber/text/TextNpcInfoTranscriber.kt +++ b/transcriber/src/main/kotlin/net/rsprox/transcriber/text/TextNpcInfoTranscriber.kt @@ -207,7 +207,7 @@ public class TextNpcInfoTranscriber( when { coordShift && update.jump -> "TELEJUMP" coordShift -> "TELEPORT" - else -> "ACTIVE" + else -> "idle" } } MoveSpeed.CRAWL -> "CRAWL"