[UPD] added a ррр sound
All р vovels now turns into ррр
This commit is contained in:
@@ -22,6 +22,9 @@ class NekoSpeakModule(loader.Module):
|
||||
if word.lower().startswith("н") and len(word) > 1:
|
||||
word = "ня" + word[2:]
|
||||
new_words.append(word)
|
||||
if word.lower().startswith("р") and len(word) > 1:
|
||||
word = "ррр" + word[1:]
|
||||
new_words.append(word)
|
||||
text = " ".join(new_words)
|
||||
|
||||
# Замена стандартных фраз
|
||||
|
||||
Reference in New Issue
Block a user