Fishing lures box peeve (#90741)

## About The Pull Request
This fixes a small excerpt from #90678: 
>"[...] double-examining it to see what extra items it can hold
(normally all lures) only reports the Artificial Minnow as fitting."

By making it use subtypesof instead of typesof for purpose of spawning
lures and making the minnow its own subtype.

## Why It's Good For The Game
Fixing a mild botherance.

## Changelog

🆑
fix: Examining a fishing lures box twice no longer says it can hold just
artificial minnows.
/🆑
This commit is contained in:
Ghom
2025-04-28 14:44:14 +00:00
committed by Shadow-Quill
parent c979892680
commit f2ba845ea0
3 changed files with 17 additions and 9 deletions
@@ -97,7 +97,7 @@ PROCESSING_SUBSYSTEM_DEF(fishing)
///init the list of things lures can catch
lure_catchables = list()
for(var/lure_type in typesof(/obj/item/fishing_lure))
for(var/lure_type in subtypesof(/obj/item/fishing_lure))
var/obj/item/fishing_lure/lure = new lure_type
lure_catchables[lure_type] = list()
for(var/obj/item/fish/fish as anything in spawned_fish)