From 0e2421e00c7175881c0a354d0675669cf2c93d93 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Mon, 1 May 2017 15:51:36 -0400 Subject: [PATCH] fix typo, mark hangman as done --- benbot.todo | 2 +- src/Commands/Images.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/benbot.todo b/benbot.todo index c9fb6ea..db2444a 100644 --- a/benbot.todo +++ b/benbot.todo @@ -17,7 +17,7 @@ ☐ Send an image from Google Image Search Results [5 pts] ✔ Stream music from YouTube to a voice channel [10 pts] @done (17-04-30 23:56) ✔ Create and vote on polls [5 pts] @done (17-04-18 23:22) - ☐ Hangman [5 pts] + ✔ Hangman [5 pts] @done (17-05-01 15:08) ✔ TicTacToe [5 pts] @done (17-04-24 02:04) ✔ Text transform (block emojis, unicode fonts, and ASCII art) [3 pts] @done (17-04-10 19:38) ✔ Roll an n-sided die [1 pts] @done (17-03-27 00:53) diff --git a/src/Commands/Images.php b/src/Commands/Images.php index 780bef0..02089f4 100644 --- a/src/Commands/Images.php +++ b/src/Commands/Images.php @@ -73,7 +73,7 @@ final class Images self::$bot->imgs[$imgname] = "$imgname.$ext"; file_put_contents(self::$bot->dir."/uploaded_images/$imgname.$ext", file_get_contents($msg->attachments[0]->url)); - return "image save as $imgname"; + return "image saved as $imgname"; } } }