diff --git a/code/modules/client/client_defines.dm b/code/modules/client/client_defines.dm index be2f207b485..fe9c1c4277c 100644 --- a/code/modules/client/client_defines.dm +++ b/code/modules/client/client_defines.dm @@ -194,7 +194,7 @@ /// A buffer of currently held keys. var/list/keys_held = list() - /// A buffer for combinations such of modifiers + keys (ex: CtrlD, AltE, ShiftT). Format: ["key"] -> ["combo"] (ex: ["D"] -> ["CtrlD"]) + /// A buffer for combinations such of modifiers + keys (ex: CtrlD, AltE, ShiftT). Format: `"key"` -> `"combo"` (ex: `"D"` -> `"CtrlD"`) var/list/key_combos_held = list() /* ** These next two vars are to apply movement for keypresses and releases made while move delayed. diff --git a/code/modules/mob/living/carbon/human/species.dm b/code/modules/mob/living/carbon/human/species.dm index 77a348728ad..f183cd15c28 100644 --- a/code/modules/mob/living/carbon/human/species.dm +++ b/code/modules/mob/living/carbon/human/species.dm @@ -126,7 +126,7 @@ GLOBAL_LIST_EMPTY(roundstart_races) /// The body temperature limit the body can take before it starts taking damage from cold. var/bodytemp_cold_damage_limit = BODYTEMP_COLD_DAMAGE_LIMIT - ///Species-only traits. Can be found in [code/_DEFINES/DNA.dm] + ///Species-only traits. Can be found in [code/__DEFINES/DNA.dm] var/list/species_traits = list() ///Generic traits tied to having the species. var/list/inherent_traits = list() @@ -171,7 +171,7 @@ GLOBAL_LIST_EMPTY(roundstart_races) ///Allows the species to not give a single F about gravity. Used by wings. var/override_float = FALSE - ///Bitflag that controls what in game ways something can select this species as a spawnable source, such as magic mirrors. See [mob defines][code/_DEFINES/mobs.dm] for possible sources. + ///Bitflag that controls what in game ways something can select this species as a spawnable source, such as magic mirrors. See [mob defines][code/__DEFINES/mobs.dm] for possible sources. var/changesource_flags = NONE ///////////