This commit is contained in:
2022-07-05 16:43:23 +03:00
parent 059228ca52
commit c80fe33e6d
12 changed files with 215 additions and 153 deletions

View File

@@ -24,9 +24,9 @@ public class Random : DBCommand
if (a > b)
{
var x = a;
a = b;
b = x;
var temp = a;
a = b;
b = temp;
}
await message.Channel.SendMessageAsync("Your random generated number is " + new System.Random().Next(a, b));