57yethdbfn (#18585)

Co-authored-by: DreamySkrell <>
This commit is contained in:
DreamySkrell
2024-03-05 18:05:55 +00:00
committed by GitHub
co-authored by DreamySkrell <>
parent c48c3089dc
commit 2815bab234
2 changed files with 22 additions and 0 deletions
@@ -417,3 +417,18 @@
/datum/gear/lore_radio
display_name = "analog radio"
path = /obj/item/lore_radio
/datum/gear/pottedplant_small
display_name = "potted plant"
description = "A small potted plant."
cost = 1
path = /obj/item/flora/pottedplant_small/dead
/datum/gear/pottedplant_small/New()
..()
var/list/plants = list()
for(var/plant_type in typesof(/obj/item/flora/pottedplant_small))
var/obj/item/flora/pottedplant_small/plant = plant_type
plants[initial(plant.name)] = plant_type
sortTim(plants, GLOBAL_PROC_REF(cmp_text_asc))
gear_tweaks += new /datum/gear_tweak/path(plants)