Fix bot insults ratio

This commit is contained in:
AlberLC
2022-05-25 04:00:47 +02:00
parent 20fb6e3223
commit d47fdfb57e

View File

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