Skip to content

Commit

Permalink
Merge pull request #151 from MortoSasye/oopsie-daisy
Browse files Browse the repository at this point in the history
Fix Batch | Plutonian & Age Descriptions
  • Loading branch information
carpotoxin authored Oct 13, 2024
2 parents 17b2eca + a70f042 commit ef37284
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
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

0 comments on commit ef37284

Please sign in to comment.