diff --git a/locale/Messages.resx b/locale/Messages.resx
index 67ec5d4..98f6dc6 100644
--- a/locale/Messages.resx
+++ b/locale/Messages.resx
@@ -654,7 +654,7 @@
   <data name="RandomOutput" xml:space="preserve">
     <value>Your random number is:</value>
   </data>
-  <data name="RandomObvious" xml:space="preserve">
+  <data name="RandomMinMaxSame" xml:space="preserve">
       <value>Isn't it obvious?</value>
   </data>
   <data name="RandomMin" xml:space="preserve">
diff --git a/locale/Messages.ru.resx b/locale/Messages.ru.resx
index dfa7d09..f5001ed 100644
--- a/locale/Messages.ru.resx
+++ b/locale/Messages.ru.resx
@@ -654,7 +654,7 @@
   <data name="RandomOutput" xml:space="preserve">
     <value>Ваше случайное число:</value>
   </data>
-  <data name="RandomObvious" xml:space="preserve">
+  <data name="RandomMinMaxSame" xml:space="preserve">
       <value>Разве это не очевидно?</value>
   </data>
   <data name="RandomMax" xml:space="preserve">
diff --git a/locale/Messages.tt-ru.resx b/locale/Messages.tt-ru.resx
index 7a6bfe8..d2e1b25 100644
--- a/locale/Messages.tt-ru.resx
+++ b/locale/Messages.tt-ru.resx
@@ -654,7 +654,7 @@
   <data name="RandomOutput" xml:space="preserve">
     <value>ваше рандомное число:</value>
   </data>
-  <data name="RandomObvious" xml:space="preserve">
+  <data name="RandomMinMaxSame" xml:space="preserve">
       <value>ну чувак...</value>
   </data>
   <data name="RandomMax" xml:space="preserve">
diff --git a/src/Commands/ToolsCommandGroup.cs b/src/Commands/ToolsCommandGroup.cs
index e19f484..d75c3fe 100644
--- a/src/Commands/ToolsCommandGroup.cs
+++ b/src/Commands/ToolsCommandGroup.cs
@@ -288,7 +288,7 @@ public class ToolsCommandGroup : CommandGroup
         var embedColor = ColorsList.Blue;
         if (min == max)
         {
-            description.AppendLine(Markdown.Italicise(Messages.RandomObvious));
+            description.AppendLine(Markdown.Italicise(Messages.RandomMinMaxSame));
             embedColor = ColorsList.Red;
         }
 
diff --git a/src/Messages.Designer.cs b/src/Messages.Designer.cs
index cd5a67f..7b1fd29 100644
--- a/src/Messages.Designer.cs
+++ b/src/Messages.Designer.cs
@@ -1136,10 +1136,10 @@ namespace Octobot {
             }
         }
 
-        internal static string RandomObvious
+        internal static string RandomMinMaxSame
         {
             get {
-                return ResourceManager.GetString("RandomObvious", resourceCulture);
+                return ResourceManager.GetString("RandomMinMaxSame", resourceCulture);
             }
         }