Skip to content

Commit

Permalink
исправил x2
Browse files Browse the repository at this point in the history
  • Loading branch information
KefirTT committed Nov 16, 2024
1 parent d7f4f1a commit eef7e0a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion code/game/dna/genes/disabilities.dm
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,8 @@
. = ..()
if(H.remove_language(LANGUAGE_GALACTIC_COMMON))
H.add_language(LANGUAGE_GALACTIC_COMMON, TRUE)
H.dna.species.default_language = H.dna.species.language
if(H.dna.species.default_language == LANGUAGE_GALACTIC_COMMON)
H.dna.species.default_language = H.dna.species.language


/datum/dna/gene/disability/aphasia/deactivate(mob/living/carbon/human/H, flags)
Expand Down
3 changes: 2 additions & 1 deletion code/modules/mob/mob_defines.dm
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@
var/exploit_record = ""
/// For speaking/listening.
var/list/datum/language/languages
var/list/datum/language/languages_only_listen // For understanding the language without ability to speak. Still can speak if lang is in /languages list
/// For understanding the language without ability to speak. Still can speak if lang is in /languages list
var/list/datum/language/languages_only_listen
/// For reagents that grant language knowlege.
var/list/temporary_languages
var/list/speak_emote = list("says") // Verbs used when speaking. Defaults to 'say' if speak_emote is null.
Expand Down

0 comments on commit eef7e0a

Please sign in to comment.