From 72cd764be9a567ac2407b1f9697efea4f77798be Mon Sep 17 00:00:00 2001 From: Ghom <42542238+Ghommie@users.noreply.github.com> Date: Sat, 25 Oct 2025 11:42:21 +0200 Subject: [PATCH] Check that apply_qualities is TRUE before the fish_population unit test (#93619) --- code/modules/fishing/fish/_fish.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/fishing/fish/_fish.dm b/code/modules/fishing/fish/_fish.dm index 04c7434ce99..f46b31086a9 100644 --- a/code/modules/fishing/fish/_fish.dm +++ b/code/modules/fishing/fish/_fish.dm @@ -232,7 +232,7 @@ GLOBAL_LIST_INIT(fish_compatible_fluid_types, list( register_context() register_item_context() - if(!PERFORM_ALL_TESTS(focus_only/fish_population) || type == abstract_type || stable_population > 1) + if(!apply_qualities || !PERFORM_ALL_TESTS(focus_only/fish_population) || type == abstract_type || stable_population > 1) return if(length(compatible_types)) for(var/obj/item/fish/fishie as anything in compatible_types)