Skip to content

Commit

Permalink
Aeiou...
Browse files Browse the repository at this point in the history
  • Loading branch information
Draggeru committed Dec 20, 2023
1 parent dfd548a commit 6c52049
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions maplestation_modules/code/modules/language/isatoan.dm
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
)
icon_state = "eldritch"
icon = 'maplestation_modules/icons/misc/language.dmi'
default_priority = 120
default_priority = 80

/datum/language_holder/eldritch
understood_languages = list(
Expand All @@ -62,9 +62,9 @@
if(isnull(language))
return
var/datum/language/dialect = GLOB.language_datum_instances[language]
dialect.heard_by_mob_who_lacks_critical_information(src)
dialect.heard_by_mob_who_lacks_critical_information(src, speaker)

/datum/language/proc/heard_by_mob_who_lacks_critical_information(mob/living/listener)
/datum/language/proc/heard_by_mob_who_lacks_critical_information(mob/living/listener, atom/movable/speaker)
return

/datum/language/eldritch/heard_by_mob_who_lacks_critical_information(mob/living/listener, atom/movable/speaker)
Expand Down
2 changes: 1 addition & 1 deletion maplestation_modules/code/modules/surgery/organs/tongue.dm
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@

/obj/item/organ/internal/tongue/get_possible_languages()
return ..() + list(
/datum/language/isatoa,
/datum/language/ratvarian,
/datum/language/skrell,
/datum/language/yangyu,
/datum/language/isatoa,
)

// Skrell Tongue. Could use a sprite.
Expand Down

0 comments on commit 6c52049

Please sign in to comment.