diff --git a/botbotbot/text.py b/botbotbot/text.py
index 2342378..164d10e 100644
--- a/botbotbot/text.py
+++ b/botbotbot/text.py
@@ -172,11 +172,7 @@ class TextBot:
     async def react_message_edit(
         self, before: discord.Message, after: discord.Message
     ) -> None:
-        if (
-            before.content != after.content
-            and after.author != self.bot.user
-            and random.random() < 20 / 100
-        ):
+        if after.author != self.bot.user and before.content != after.content:
             logger.info(f"React to edit from {after.author}.")
             await after.add_reaction("👀")