Removes the debug box full of fish that doesn't work anymore. (#90739)

This commit is contained in:
Ghom
2025-04-23 00:06:16 +02:00
committed by GitHub
parent 4d4eadfde9
commit de0d79ccc2
2 changed files with 2 additions and 10 deletions
@@ -411,14 +411,6 @@
. = ..()
new /obj/item/fishing_line/auto_reel(src)
/obj/item/storage/box/fish_debug
name = "box full of fish"
illustration = "fish"
/obj/item/storage/box/fish_debug/PopulateContents()
for(var/fish_type in subtypesof(/obj/item/fish))
new fish_type(src)
///Used to give the average player info about fishing stuff that's unknown to many.
/obj/item/paper/paperslip/fishing_tip
name = "fishing tip"
+2 -2
View File
@@ -516,8 +516,8 @@
/datum/unit_test/fish_randomize_size_weight
/datum/unit_test/fish_randomize_size_weight/Run()
var/obj/item/storage/box/fish_debug/box = allocate(/obj/item/storage/box/fish_debug)
for(var/obj/item/fish/fish as anything in box)
for(var/fish_type in subtypesof(/obj/item/fish))
var/obj/item/fish/fish = allocate(fish_type)
fish.randomize_size_and_weight()
/datum/unit_test/aquarium_upgrade