diff options
Diffstat (limited to 'src/net')
-rw-r--r-- | src/net/playerhandler.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/net/playerhandler.cpp b/src/net/playerhandler.cpp index e83bcce8..b04778f9 100644 --- a/src/net/playerhandler.cpp +++ b/src/net/playerhandler.cpp @@ -32,6 +32,7 @@ #include "../npc.h" #include "../gui/chat.h" +#include "../gui/npclistdialog.h" #include "../gui/ok_dialog.h" #include "../gui/skill.h" @@ -39,6 +40,8 @@ OkDialog *weightNotice = NULL; OkDialog *deathNotice = NULL; +extern NpcListDialog *npcListDialog; + /** * Listener used for handling the overweigth message. */ @@ -64,6 +67,8 @@ namespace { { player_node->revive(); deathNotice = NULL; + npcListDialog->setVisible(false); + current_npc = 0; } } deathListener; } |