File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 24
24
#####################################
25
25
#
26
26
COMMAND_PREFIX = '!' #
27
- VERSION = "v0.3.2 -alpha" #
27
+ VERSION = "v0.3.3 -alpha" #
28
28
ACTIVITY = discord .Game ("!help" ) #
29
29
LOG_LEVEL = logging .INFO #
30
30
#
@@ -213,6 +213,16 @@ async def check_user_score(ctx):
213
213
await ctx .message .channel .send (f"Score for <@{ uuid } >: { score } " )
214
214
215
215
216
+ @bot .command (name = "correct" , help = "Sends correct.png" )
217
+ async def correct (ctx ):
218
+ await ctx .message .channel .send (file = discord .File ('resources/correct.png' ))
219
+
220
+
221
+ @bot .command (name = "what" , help = "Sends what.png" )
222
+ async def what (ctx ):
223
+ await ctx .message .channel .send (file = discord .File ('resources/what.png' ))
224
+
225
+
216
226
async def run_once_every_day ():
217
227
"""
218
228
Runs a block of code every day sometime between 00:00 and 01:00 local time.
You can’t perform that action at this time.
0 commit comments