fix typo, mark hangman as done

This commit is contained in:
Ben Harris 2017-05-01 15:51:36 -04:00
parent e5b3672c92
commit 0e2421e00c
2 changed files with 2 additions and 2 deletions

View File

@ -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)

View File

@ -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";
}
}
}