diff --git a/code/modules/client/preference_setup/loadout/loadout_utility.dm b/code/modules/client/preference_setup/loadout/loadout_utility.dm index 99856f93f7a..8ab7cc9796b 100644 --- a/code/modules/client/preference_setup/loadout/loadout_utility.dm +++ b/code/modules/client/preference_setup/loadout/loadout_utility.dm @@ -100,10 +100,17 @@ /datum/gear/utility/fannypack/New() ..() var/list/fannys = list() - for(var/fanny in typesof(/obj/item/storage/belt/fannypack)) - var/obj/item/storage/belt/fannypack/fanny_type = fanny - fannys[initial(fanny_type.name)] = fanny_type - gear_tweaks += new/datum/gear_tweak/path(sortAssoc(fannys)) + fannys["leather fannypack"] = /obj/item/storage/belt/fannypack + fannys["black fannypack"] = /obj/item/storage/belt/fannypack/black + fannys["blue fannypack"] = /obj/item/storage/belt/fannypack/blue + fannys["cyan fannypack"] = /obj/item/storage/belt/fannypack/cyan + fannys["green fannypack"] = /obj/item/storage/belt/fannypack/green + fannys["orange fannypack"] = /obj/item/storage/belt/fannypack/orange + fannys["purple fannypack"] = /obj/item/storage/belt/fannypack/purple + fannys["red fannypack"] = /obj/item/storage/belt/fannypack/red + fannys["white fannypack"] = /obj/item/storage/belt/fannypack/white + fannys["yellow fannypack"] = /obj/item/storage/belt/fannypack/yellow + gear_tweaks += new/datum/gear_tweak/path(fannys) /datum/gear/utility/toolbelt_alt display_name = "tool-belt, alt" diff --git a/html/changelogs/alberyk-fannypackfix.yml b/html/changelogs/alberyk-fannypackfix.yml new file mode 100644 index 00000000000..4388fc0fe14 --- /dev/null +++ b/html/changelogs/alberyk-fannypackfix.yml @@ -0,0 +1,6 @@ +author: Alberyk + +delete-after: True + +changes: + - bugfix: "Removed the component pouch from the loadout."