From c7625721efea4549921ee69d4725da37cf8a5ed2 Mon Sep 17 00:00:00 2001 From: homayk228 <43516026+SouceCalve@users.noreply.github.com> Date: Thu, 6 Mar 2025 09:25:33 +0700 Subject: [PATCH] [FIX] fixed word duplication bug --- nekospeak.py | 1 - 1 file changed, 1 deletion(-) diff --git a/nekospeak.py b/nekospeak.py index 8bfa448..03910cd 100644 --- a/nekospeak.py +++ b/nekospeak.py @@ -21,7 +21,6 @@ class NekoSpeakModule(loader.Module): for word in words: 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)