From 5936b56802ce56d9943dd7787d87b7c70ae4c1de Mon Sep 17 00:00:00 2001 From: izac112 Date: Wed, 18 May 2022 12:47:16 +0200 Subject: [PATCH] unticks the vore fluff loadout --- .../loadout/loadout_fluffitems_yw.dm | 20 +++++++++++++++++++ vorestation.dme | 1 - 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/code/modules/client/preference_setup/loadout/loadout_fluffitems_yw.dm b/code/modules/client/preference_setup/loadout/loadout_fluffitems_yw.dm index 57a9677c05..58215dea6e 100644 --- a/code/modules/client/preference_setup/loadout/loadout_fluffitems_yw.dm +++ b/code/modules/client/preference_setup/loadout/loadout_fluffitems_yw.dm @@ -1,3 +1,16 @@ +// Note for newly added fluff items: Ckeys should not contain any spaces, underscores or capitalizations, +// or else the item will not be usable. +// Example: Someone whose username is "Master Pred_Man" should be written as "masterpredman" instead +// Note: Do not use characters such as # in the display_name. It will cause the item to be unable to be selected. + +/datum/gear/fluff + path = /obj/item + sort_category = "Fluff Items" + display_name = "If this item can be chosen or seen, ping a coder immediately!" + ckeywhitelist = list("This entry should never be choosable with this variable set.") //If it does, then that means somebody fucked up the whitelist system pretty hard + character_name = list("This entry should never be choosable with this variable set.") + cost = 0 + /* /datum/gear/fluff/testhorn path = /obj/item/weapon/bikehorn @@ -8,6 +21,13 @@ character_name = list("shitfacemcgee") //Character name. this variable is required, or the item doesn't show in loadout. Change to "character_name = null" if not character restricted. */ +/datum/gear/fluff/collar //Use this as a base path for collars if you'd like to set tags in loadout. Make sure you don't use apostrophes in the display name or this breaks! + slot = slot_tie + +/datum/gear/fluff/collar/New() + ..() + gear_tweaks += gear_tweak_collar_tag + // 0-9 CKEYS // A CKEYS diff --git a/vorestation.dme b/vorestation.dme index 139c0ed46c..0d58d6414b 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -1950,7 +1950,6 @@ #include "code\modules\client\preference_setup\loadout\loadout_eyes.dm" #include "code\modules\client\preference_setup\loadout\loadout_eyes_vr.dm" #include "code\modules\client\preference_setup\loadout\loadout_eyes_yw.dm" -#include "code\modules\client\preference_setup\loadout\loadout_fluffitems_vr.dm" #include "code\modules\client\preference_setup\loadout\loadout_fluffitems_yw.dm" #include "code\modules\client\preference_setup\loadout\loadout_general.dm" #include "code\modules\client\preference_setup\loadout\loadout_general_vr.dm"