From 6ffe0aa78cf9e467bbf0f5853671b2a9390d6986 Mon Sep 17 00:00:00 2001 From: dam <27978131-real_damighty@users.noreply.gitlab.com> Date: Wed, 1 Apr 2026 17:50:08 +0300 Subject: [PATCH] Interacting with fishing spots on diagonals should no longer fail --- .../main/content/global/skill/gather/fishing/FishingListener.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/src/main/content/global/skill/gather/fishing/FishingListener.kt b/Server/src/main/content/global/skill/gather/fishing/FishingListener.kt index 1cad8a28d..2f23e264c 100644 --- a/Server/src/main/content/global/skill/gather/fishing/FishingListener.kt +++ b/Server/src/main/content/global/skill/gather/fishing/FishingListener.kt @@ -152,7 +152,7 @@ class FishingListener : InteractionListener{ } return false } - return node.isActive && node.location.withinDistance(player.location, 1) + return node.isActive && node.location.withinMaxnormDistance(player.location, 1) }