summaryrefslogtreecommitdiff
path: root/src/Game.php
diff options
context:
space:
mode:
authorFbenas <philbeansburton@gmail.com>2017-03-12 04:40:09 +0000
committerFbenas <philbeansburton@gmail.com>2017-03-12 04:40:09 +0000
commita61df3888e726938f9f6b3af9cb4c8084907dfc6 (patch)
treeb5c9b870023a817cecf31d282c2639e192289b6a /src/Game.php
parent78bb09f1ab50b85ec000e4d61cc795f03325cd11 (diff)
Allow important param injects to persist across all handler messages
Diffstat (limited to 'src/Game.php')
-rw-r--r--src/Game.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Game.php b/src/Game.php
index 3a62f3e..c2141ce 100644
--- a/src/Game.php
+++ b/src/Game.php
@@ -26,10 +26,12 @@ class Game
public function sendOpeningMessage()
{
$message = $this->handler->renderOpeningMessage();
+ sleep(1);
+ $message2 = $this->handler->renderOpeningMessage();
$important = $this->handler->returnImportant('inject');
- var_dump($message, $important);
+ var_dump($message, $important, $message2);
}
}