Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Batch | Plutonian & Age Descriptions #151

Merged
merged 2 commits into from
Oct 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions modular_doppler/languages/code/language_datums.dm
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
/obj/item/organ/internal/tongue/get_possible_languages()
var/list/langs = ..()
langs += /datum/language/konjin
langs += /datum/language/movespeak
langs += /datum/language/primitive_genemod
return langs


var/list/langs = ..()
langs += /datum/language/konjin
langs += /datum/language/gutter
langs += /datum/language/movespeak
langs += /datum/language/primitive_genemod
return langs

/// ACTUAL LANGUAGES BEGIN HERE
/datum/language/konjin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export const age: Feature<number> = {
name: 'Age',
/* DOPPLER ADDITION START */
description:
"The effective and actual age of your character expressed in years. If they haven't entered cryostasis for any meaningful length of time or are otherwise uncommonly long-lived, this number is their age in years since birth.",
"The character's physical age, in years. This is the age their body should be, ignoring any type of stasis or time manipulation.",
/* DOPPLER ADDITION END */
component: FeatureNumberInput,
};
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
export const age_chronological: Feature<number> = {
name: 'Age (Chronological)',
description:
"The actual, physical age of your character. Applicable mostly in instances of prolonged cryogenic stasis or for lifeforms that mature or metabolize at much slower rates compared to 'standard' sector races.",
'The amount of time the character has existed in this world, in years. This includes time spent in any kind of stasis, however other methods of spacetime manipulation (such as timeskips) may not necessarily apply.',
component: FeatureNumberInput,
};

Expand Down
Loading