From 3a0220360563c8e8deeb4cd989fc36d6082a9e6e Mon Sep 17 00:00:00 2001 From: Ceikry Date: Sun, 18 Sep 2022 14:31:32 +0000 Subject: [PATCH] Fixed pathing to closest tile occupied by target scenery --- .../main/kotlin/rs09/game/interaction/InteractionListeners.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/src/main/kotlin/rs09/game/interaction/InteractionListeners.kt b/Server/src/main/kotlin/rs09/game/interaction/InteractionListeners.kt index 41304bf10..b0b3d1d73 100644 --- a/Server/src/main/kotlin/rs09/game/interaction/InteractionListeners.kt +++ b/Server/src/main/kotlin/rs09/game/interaction/InteractionListeners.kt @@ -228,7 +228,7 @@ object InteractionListeners { IntType.PLAYER -> DestinationFlag.ENTITY IntType.GROUNDITEM -> DestinationFlag.ITEM IntType.NPC -> DestinationFlag.ENTITY - IntType.ITEM -> null + IntType.SCENERY -> null else -> DestinationFlag.OBJECT }