mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-25 14:16:58 +01:00
[MIRROR] next grep, no spaces (#10548)
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
co-authored by
Kashargul
parent
16a213f699
commit
8d0febfbb6
@@ -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
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user