mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-22 12:29:46 +01:00
Fixes belt selection being broken (#16008)
* fixed??/ * I seriously fucked up a changelog come on
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user