mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-27 15:17:01 +01:00
Removes the debug box full of fish that doesn't work anymore. (#90739)
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user