From c4ad5bfc022038534a74623b53ae4e457b79a297 Mon Sep 17 00:00:00 2001 From: Ghom <42542238+Ghommie@users.noreply.github.com> Date: Fri, 18 Jul 2025 10:21:34 +0200 Subject: [PATCH] [NO GBP] switching an istype call with ispath so fish ACTUALLY survive on water turfs (#92193) --- code/controllers/subsystem/processing/fishing.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/subsystem/processing/fishing.dm b/code/controllers/subsystem/processing/fishing.dm index 070e2ce6c08..3ccf0e06b73 100644 --- a/code/controllers/subsystem/processing/fishing.dm +++ b/code/controllers/subsystem/processing/fishing.dm @@ -113,7 +113,7 @@ PROCESSING_SUBSYSTEM_DEF(fishing) if(!length(source.associated_safe_turfs)) continue for(var/fish_path in source.fish_table) - if(!istype(fish_path, /obj/item/fish)) + if(!ispath(fish_path, /obj/item/fish)) continue LAZYOR(fish_safe_turfs_by_type[fish_path], source.associated_safe_turfs) //If a subtype doesn't have set safe turfs, it'll inherit them from the parent type.