mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-12 08:36:00 +01:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user