10,794
edits
TheNightAvl (talk | contribs) mNo edit summary |
TheNightAvl (talk | contribs) mNo edit summary |
||
Line 1,435: | Line 1,435: | ||
get_nasal(true) | get_nasal(true) | ||
table.insert(syllables[i]["coda"], 1, "j̃") | table.insert(syllables[i]["coda"], 1, "j̃") | ||
elseif syllables[i+1]["onset"] then | elseif syllables[i+1] then | ||
if syllables[i+1]["onset"] then | |||
if syllables[i]["coda"][2] == nil and fricative[syllables[i+1]["onset"][1]] then | |||
get_nasal(true) | |||
table.insert(syllables[i]["coda"], 1, "j̃") | |||
end | |||
end | end | ||
end | end | ||
Line 1,446: | Line 1,448: | ||
if fricative[syllables[i]["coda"][2]] then | if fricative[syllables[i]["coda"][2]] then | ||
get_nasal(true) | get_nasal(true) | ||
elseif syllables[i+1]["onset"] then | elseif syllables[i+1] then | ||
if syllables[i+1]["onset"] then | |||
if syllables[i]["coda"][2] == nil and fricative[syllables[i+1]["onset"][1]] then | |||
get_nasal(true) | |||
end | |||
end | end | ||
end | end |