From 41b466f8a9785beaae09812bf6aef5fae02cd82a Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Wed, 18 Oct 2023 01:34:22 +0200 Subject: [PATCH] [MIRROR] [NO GBP] fish analyzers can now be actually used for experiments. [MDB IGNORE] (#24408) * [NO GBP] fish analyzers can now be actually used for experiments. (#79030) ## About The Pull Request I've forgot that, for some reasons, both experiments and experiment handlers have an experiment(or) whitelist var. ## Why It's Good For The Game This will fix #78921 ## Changelog :cl: fix: Fish analyzers can now be actually used for experiments. /:cl: * [NO GBP] fish analyzers can now be actually used for experiments. --------- Co-authored-by: Ghom <42542238+Ghommie@users.noreply.github.com> --- code/modules/experisci/experiment/types/scanning_fish.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/experisci/experiment/types/scanning_fish.dm b/code/modules/experisci/experiment/types/scanning_fish.dm index 52e58c9104c..20a5f928f48 100644 --- a/code/modules/experisci/experiment/types/scanning_fish.dm +++ b/code/modules/experisci/experiment/types/scanning_fish.dm @@ -10,7 +10,7 @@ GLOBAL_LIST_EMPTY(scanned_fish_by_techweb) name = "Fish Scanning Experiment 1" description = "An experiment requiring different fish species to be scanned to unlock the 'Beach' setting for the fishing portal generator." performance_hint = "Scan fish. Examine scanner to review progress. Unlock new fishing portals." - allowed_experimentors = list(/obj/item/experi_scanner, /obj/machinery/destructive_scanner, /obj/item/fishing_rod/tech) + allowed_experimentors = list(/obj/item/experi_scanner, /obj/machinery/destructive_scanner, /obj/item/fishing_rod/tech, /obj/item/fish_analyzer) traits = EXPERIMENT_TRAIT_TYPECACHE points_reward = list(TECHWEB_POINT_TYPE_GENERIC = 750) required_atoms = list(/obj/item/fish = 4)