summaryrefslogtreecommitdiff
path: root/src/Game.php
diff options
context:
space:
mode:
authorFbenas <philbeansburton@gmail.com>2017-03-12 20:05:19 +0000
committerFbenas <philbeansburton@gmail.com>2017-03-12 20:05:19 +0000
commitedfd095021ee5d89f53da4fd78d7dea7346d7617 (patch)
tree85afbe9cf9a2414a654790336c9ced4b9b62a505 /src/Game.php
parent6f4cd9178ba55ffb3fd80816cf9f4cda39ee0cad (diff)
more magic in rendering mesages
Diffstat (limited to 'src/Game.php')
-rw-r--r--src/Game.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/Game.php b/src/Game.php
index 1bedba2..c50bd34 100644
--- a/src/Game.php
+++ b/src/Game.php
@@ -39,12 +39,10 @@ class Game
*/
public function sendOpeningMessage()
{
- $message = $this->handler->renderOpeningMessage();
- sleep(1);
- $message2 = $this->handler->renderOpeningMessage();
+ $message = $this->handler->renderOverview();
$important = $this->handler->returnImportant('inject');
- var_dump($message, $important, $message2);
+ var_dump($message, $important);
}
}