update paper

This commit is contained in:
Ben Harris 2017-05-05 17:16:36 -04:00
parent 4b307ac69d
commit 6b0e93524c
5 changed files with 5 additions and 1 deletions

3
paper/sr_proj_paper.lol Normal file
View File

@ -0,0 +1,3 @@
\contentsline {lstlisting}{\numberline {1}Get TicTacToe cell value}{5}
\contentsline {lstlisting}{\numberline {2}Handle a move from a player}{5}
\contentsline {lstlisting}{\numberline {3}Weather look up}{6}

Binary file not shown.

View File

@ -209,6 +209,7 @@ final class Debug
foreach ($user->roles as $role) {
$roles[] = $role->name;
}
print_r($user->game);
$embed = self::$bot->factory(Embed::class, [
'title' => 'User info for',
'description' => "$user",

View File

@ -137,7 +137,7 @@ final class Music
if (strlen($args[0]) === 11) {
$cmd .= "https://www.youtube.com/watch?v={$args[0]}";
} elseif (strpos($args[0], 'youtube.com') !== false) {
$cmd = $args[0];
$cmd .= $args[0];
} else {
$query = implode(' ', $args);
$cmd .= "'ytsearch:$query'";