We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0deae8f commit 7b41791Copy full SHA for 7b41791
Beef/Application.cs
@@ -63,6 +63,12 @@ private Boolean IsLeader(SocketUser socketUser) {
63
}
64
65
private void HandleCommand(SocketMessage userInput) {
66
+ // This is for Cloud...
67
+ if (userInput.Content.StartsWith("I love you Beef bot!", StringComparison.CurrentCultureIgnoreCase)) {
68
+ MessageChannel(userInput.Channel, "I love you too babe.").GetAwaiter().GetResult();
69
+ return;
70
+ }
71
+
72
// Make sure it starts with ".beef" as an optimization
73
if (String.IsNullOrEmpty(userInput.Content) || !userInput.Content.StartsWith(_botPrefix + "beef"))
74
return;
0 commit comments