Fix bot insults ratio

This commit is contained in:
AlberLC
2022-05-25 02:55:28 +02:00
parent 952672946b
commit 20fb6e3223

View File

@@ -447,7 +447,7 @@ class FlanaBot(MultiBot, ABC):
( (
message.chat.config['auto_insult'] message.chat.config['auto_insult']
and and
random.random() < 0.5 random.random() < constants.INSULTS
) )
) )
) )