summaryrefslogtreecommitdiff
path: root/src/game.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.cpp')
-rw-r--r--src/game.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/game.cpp b/src/game.cpp
index 05c5f13b..f4241d0d 100644
--- a/src/game.cpp
+++ b/src/game.cpp
@@ -498,6 +498,15 @@ void do_input()
{
state = EXIT;
}
+ // Accept the Death Notice...
+ else if (deathNotice)
+ {
+ deathNotice->action("ok");
+ WFIFOW(0) = net_w_value(0x00b2);
+ WFIFOB(2) = 0;
+ WFIFOSET(3);
+ deathNotice = NULL;
+ }
// Close the Browser if opened
else if (helpWindow->isVisible())
{