summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2012-06-09 09:49:52 +0200
committerBardur Arantsson <bardur@scientician.net>2012-06-09 09:49:52 +0200
commit625f73559675c8bc7e627cd6dc5ab924aa10a068 (patch)
tree5180a01d8af8f325de9c72b47536fd1d615c5335
parent87a8ec741d6f099939499054b83a76a43fa4ad89 (diff)
Lua: Add new-style hook support for HOOK_GAME_START
-rw-r--r--src/dungeon.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/dungeon.c b/src/dungeon.c
index ff3cbdb9..f4803e3b 100644
--- a/src/dungeon.c
+++ b/src/dungeon.c
@@ -5653,6 +5653,7 @@ void play_game(bool_ new_game)
/* Ok tell the scripts that the game is about to start */
process_hooks(HOOK_GAME_START, "()");
+ process_hooks_new(HOOK_GAME_START, NULL, NULL);
/* Character is now "complete" */
character_generated = TRUE;