Fixes belt selection being broken (#16008)

* fixed??/

* I seriously fucked up a changelog come on
This commit is contained in:
kyres1
2023-03-12 00:01:35 +00:00
committed by GitHub
parent e39aa8a7f1
commit af94d54379
2 changed files with 14 additions and 4 deletions
@@ -1,15 +1,19 @@
/datum/gear/belt
display_name = "belt selection (colorable)"
description = "A selection of colorable belts."
display_name = "belt (colorable)"
description = "A generic colorable belt."
path = /obj/item/storage/belt/generic
slot = slot_belt
sort_category = "Belts"
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION
/datum/gear/belt/New()
/datum/gear/belt/resize
display_name = "alternative belt sizes (colorable)"
description = "A generic colorable belt selection of varying appearances."
path = /obj/item/storage/belt/generic/thin
/datum/gear/belt/resize/New()
..()
var/list/belt = list()
belt["generic belt"] = /obj/item/storage/belt/generic
belt["thin belt"] = /obj/item/storage/belt/generic/thin
belt["thick belt"] = /obj/item/storage/belt/generic/thick
belt["buckle belt"] = /obj/item/storage/belt/generic/buckle