From 497d9225067ffc567aac23d68d06c610b53f9ad8 Mon Sep 17 00:00:00 2001 From: Orotheim <81803907+Orotheim@users.noreply.github.com> Date: Mon, 12 Aug 2024 20:34:00 +0100 Subject: [PATCH] Free-normalizers Makes normalizers free in the loadout screen. No reason they should cost 6. --- hyperstation/code/modules/client/loadout/gloves.dm | 4 ++-- hyperstation/code/modules/client/loadout/neck.dm | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/hyperstation/code/modules/client/loadout/gloves.dm b/hyperstation/code/modules/client/loadout/gloves.dm index ad12c3e3..68470369 100644 --- a/hyperstation/code/modules/client/loadout/gloves.dm +++ b/hyperstation/code/modules/client/loadout/gloves.dm @@ -2,10 +2,10 @@ name = "Normalizer Ring" category = SLOT_GLOVES path = /obj/item/clothing/gloves/ring/syntech - cost = 6 + cost = 0 /datum/gear/syntech/band name = "Normalizer Band" category = SLOT_GLOVES path = /obj/item/clothing/gloves/ring/syntech/band - cost = 6 + cost = 0 diff --git a/hyperstation/code/modules/client/loadout/neck.dm b/hyperstation/code/modules/client/loadout/neck.dm index a21c8743..6e2b141a 100644 --- a/hyperstation/code/modules/client/loadout/neck.dm +++ b/hyperstation/code/modules/client/loadout/neck.dm @@ -2,16 +2,16 @@ name = "Normalizer Pendant" category = SLOT_NECK path = /obj/item/clothing/neck/syntech - cost = 6 + cost = 0 /datum/gear/syntech/choker name = "Normalizer Choker" category = SLOT_NECK path = /obj/item/clothing/neck/syntech/choker - cost = 6 + cost = 0 /datum/gear/syntech/collar name = "Normalizer Collar" category = SLOT_NECK path = /obj/item/clothing/neck/syntech/collar - cost = 6 + cost = 0