Skip to content

Commit

Permalink
Whitelist2
Browse files Browse the repository at this point in the history
Shhh this isn't me fixing things I broke
  • Loading branch information
Lilly-Lira committed Jun 19, 2024
1 parent 2f519cd commit 779ce5e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
// Note for newly added fluff items: Ckeys should not contain any spaces, underscores or capitalizations,
// Note for newly added quest 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
/datum/gear/quest
path = /obj/item
sort_category = "Quest 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
display_name = "Airhorn - Example Item"
/datum/gear/quest/ManaSword
path = /obj/item/weapon/Sword
display_name = "Mana Sword - Example Item"
description = "An example item that you probably shouldn't see!"
ckeywhitelist = list("mewchild")
allowed_roles = list("Engineer")
ckeywhitelist = list("lira13")
allowed_roles = list("Influencer")
*/


/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!
/datum/gear/quest/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()
/datum/gear/quest/collar/New()
..()
gear_tweaks += gear_tweak_collar_tag

Expand Down
2 changes: 1 addition & 1 deletion vorestation.dme
Original file line number Diff line number Diff line change
Expand Up @@ -1959,14 +1959,14 @@
#include "code\modules\client\preference_setup\loadout\loadout_eyes_vr.dm"
#include "code\modules\client\preference_setup\loadout\loadout_fluffitems_RS.dm"
#include "code\modules\client\preference_setup\loadout\loadout_fluffitems_vr.dm"
#include "code\modules\client\preference_setup\loadout\loadout_questitems_rs.dm"
#include "code\modules\client\preference_setup\loadout\loadout_general.dm"
#include "code\modules\client\preference_setup\loadout\loadout_general_vr.dm"
#include "code\modules\client\preference_setup\loadout\loadout_gloves.dm"
#include "code\modules\client\preference_setup\loadout\loadout_gloves_vr.dm"
#include "code\modules\client\preference_setup\loadout\loadout_head.dm"
#include "code\modules\client\preference_setup\loadout\loadout_head_vr.dm"
#include "code\modules\client\preference_setup\loadout\loadout_mask.dm"
#include "code\modules\client\preference_setup\loadout\loadout_questitems_rs.dm"
#include "code\modules\client\preference_setup\loadout\loadout_shoes.dm"
#include "code\modules\client\preference_setup\loadout\loadout_shoes_vr.dm"
#include "code\modules\client\preference_setup\loadout\loadout_smoking.dm"
Expand Down

0 comments on commit 779ce5e

Please sign in to comment.