From d7cdc024f5a1c4d6fbe46a042f0cbec97753415c Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Tue, 12 Mar 2024 03:48:23 +0100 Subject: [PATCH] [MIRROR] Fixes a broken path on the black market (#26842) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Fixes a broken path on the black market (#81942) ## About The Pull Request We have a misspelled path here for a black market fish case, which is creating a broken object called `fish_cas` ## Why It's Good For The Game 🐛 💥 Fixes a rather basic path bug that I came across, simple as. ## Changelog :cl: fix: The black market illegal fish case now correctly initializes. /:cl: * Fixes a broken path on the black market --------- Co-authored-by: ArcaneMusic <41715314+ArcaneMusic@users.noreply.github.com> --- code/modules/fishing/aquarium/aquarium_kit.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/fishing/aquarium/aquarium_kit.dm b/code/modules/fishing/aquarium/aquarium_kit.dm index 3aafa178f26..e22ccb37558 100644 --- a/code/modules/fishing/aquarium/aquarium_kit.dm +++ b/code/modules/fishing/aquarium/aquarium_kit.dm @@ -85,7 +85,7 @@ ) return pick_weight(weighted_list) -/obj/item/storage/fish_cas/blackmarket/Initialize(mapload) +/obj/item/storage/fish_case/blackmarket/Initialize(mapload) . = ..() for(var/obj/item/fish/fish as anything in contents) fish.set_status(FISH_DEAD)