Skip to content

Commit

Permalink
is this even correct???
Browse files Browse the repository at this point in the history
  • Loading branch information
Zonespace27 committed Oct 12, 2023
1 parent 6cae28f commit 08d7406
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/flufftext/Chinese.dm
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@
//remove complex/simple -u- glide final_syllables
if(initial.initial_sound_flags & SIMPLE_U_ONLY)
for(var/datum/chinese_sound/final_syllable/final_syllable as anything in possible_final_syllables)
if(initial(initial(final_syllable.vowel_class)) == VOWEL_CLASS_BACK_CLOSE)
if(initial(final_syllable.vowel_class) == VOWEL_CLASS_BACK_CLOSE)
possible_final_syllables -= final_syllable
possible_final_syllables += /datum/chinese_sound/final_syllable/u
else if(initial.initial_sound_flags & HALF_U)
for(var/datum/chinese_sound/final_syllable/final_syllable as anything in possible_final_syllables)
if(initial(initial(final_syllable.vowel_class)) == VOWEL_CLASS_BACK_CLOSE && initial(final_syllable.final_syllable_sound_flags) & U_GROUP_FULL)
if(initial(final_syllable.vowel_class) == VOWEL_CLASS_BACK_CLOSE && initial(final_syllable.final_syllable_sound_flags) & U_GROUP_FULL)
possible_final_syllables -= final_syllable

//check for if the sound is alveolo-palatal or sibilant/retroflex - then remove or keep front close vowels accordingly
Expand Down

0 comments on commit 08d7406

Please sign in to comment.