[MIRROR] next grep, no spaces (#10548)

Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2025-03-29 22:13:04 +01:00
committed by GitHub
co-authored by Kashargul
parent 16a213f699
commit 8d0febfbb6
104 changed files with 1278 additions and 1189 deletions
+12 -12
View File
@@ -23,19 +23,19 @@ var/global/list/joblist = list() //list of all jobstypes, minus borg and AI
#define all_genders_define_list list(MALE,FEMALE,PLURAL,NEUTER,HERM) //VOREStaton Edit
#define all_genders_text_list list("Male","Female","Plural","Neuter","Herm") //VOREStation Edit
#define pronoun_set_to_genders list(\
"He/Him" = MALE,\
"She/Her" = FEMALE,\
"It/Its" = NEUTER,\
"They/Them" = PLURAL,\
"Shi/Hir" = HERM\
)
"He/Him" = MALE,\
"She/Her" = FEMALE,\
"It/Its" = NEUTER,\
"They/Them" = PLURAL,\
"Shi/Hir" = HERM\
)
#define genders_to_pronoun_set list(\
MALE = "He/Him",\
FEMALE = "She/Her",\
NEUTER = "It/Its",\
PLURAL = "They/Them",\
HERM = "Shi/Hir"\
)
MALE = "He/Him",\
FEMALE = "She/Her",\
NEUTER = "It/Its",\
PLURAL = "They/Them",\
HERM = "Shi/Hir"\
)
var/list/mannequins_
+14 -14
View File
@@ -1,11 +1,11 @@
/**
* handles adding verbs and updating the stat panel browser
*
* pass the verb type path to this instead of adding it directly to verbs so the statpanel can update
* Arguments:
* * target - Who the verb is being added to, client or mob typepath
* * verb - typepath to a verb, or a list of verbs, supports lists of lists
*/
* handles adding verbs and updating the stat panel browser
*
* pass the verb type path to this instead of adding it directly to verbs so the statpanel can update
* Arguments:
* * target - Who the verb is being added to, client or mob typepath
* * verb - typepath to a verb, or a list of verbs, supports lists of lists
*/
/proc/add_verb(client/target, verb_or_list_to_add)
if(!target)
CRASH("add_verb called without a target")
@@ -47,13 +47,13 @@
target.stat_panel.send_message("add_verb_list", output_list)
/**
* handles removing verb and sending it to browser to update, use this for removing verbs
*
* pass the verb type path to this instead of removing it from verbs so the statpanel can update
* Arguments:
* * target - Who the verb is being removed from, client or mob typepath
* * verb - typepath to a verb, or a list of verbs, supports lists of lists
*/
* handles removing verb and sending it to browser to update, use this for removing verbs
*
* pass the verb type path to this instead of removing it from verbs so the statpanel can update
* Arguments:
* * target - Who the verb is being removed from, client or mob typepath
* * verb - typepath to a verb, or a list of verbs, supports lists of lists
*/
/proc/remove_verb(client/target, verb_or_list_to_remove)
if(IsAdminAdvancedProcCall())
return