From f102f4adb3f0eb5bc755bdb73809c54e8693fdf8 Mon Sep 17 00:00:00 2001 From: homayk228 <43516026+SouceCalve@users.noreply.github.com> Date: Sat, 20 Sep 2025 22:19:13 +0700 Subject: [PATCH] [FIX] Forgor : --- NekoSpeak.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NekoSpeak.py b/NekoSpeak.py index c1cef55..367d7ed 100644 --- a/NekoSpeak.py +++ b/NekoSpeak.py @@ -49,7 +49,7 @@ class NekoSpeakModule(loader.Module): words = text.split() new_words = [] for word in words: - if word.lower().startswith("н") and len(word) > 2: and random.random() < 0.05: + if word.lower().startswith("н") and len(word) > 2 and random.random() < 0.05: word = "ня" + word[2:] if random.random() < 0.05: word = word.replace("р", "р" * random.randint(2,4))