summaryrefslogtreecommitdiff
path: root/src/net/tmwa/beingrecv.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-06-19 21:57:59 +0300
committerAndrei Karas <akaras@inbox.ru>2017-06-19 21:57:59 +0300
commit5d8285ae8d16b40cf842f2bafd41978e316ac9b8 (patch)
treeebee8cf1f20694c896ca15977b35b6c4842cea78 /src/net/tmwa/beingrecv.cpp
parent53ff5bb23c455f6201f8b747044dddfbbc729700 (diff)
downloadManaVerse-5d8285ae8d16b40cf842f2bafd41978e316ac9b8.tar.gz
ManaVerse-5d8285ae8d16b40cf842f2bafd41978e316ac9b8.tar.bz2
ManaVerse-5d8285ae8d16b40cf842f2bafd41978e316ac9b8.tar.xz
ManaVerse-5d8285ae8d16b40cf842f2bafd41978e316ac9b8.zip
Auto close death dialog if local player resurrected.
Diffstat (limited to 'src/net/tmwa/beingrecv.cpp')
-rw-r--r--src/net/tmwa/beingrecv.cpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/net/tmwa/beingrecv.cpp b/src/net/tmwa/beingrecv.cpp
index cb02e690e..d9e058955 100644
--- a/src/net/tmwa/beingrecv.cpp
+++ b/src/net/tmwa/beingrecv.cpp
@@ -33,6 +33,7 @@
#include "input/keyboardconfig.h"
+#include "gui/windows/okdialog.h"
#include "gui/windows/outfitwindow.h"
#include "gui/windows/socialwindow.h"
@@ -55,6 +56,8 @@
#include "debug.h"
+extern OkDialog *deathNotice;
+
namespace TmwAthena
{
@@ -1253,7 +1256,7 @@ void BeingRecv::processPlayerStatusChange(Net::MessageIn &msg)
void BeingRecv::processBeingResurrect(Net::MessageIn &msg)
{
BLOCK_START("BeingRecv::processBeingResurrect")
- if ((actorManager == nullptr) || (localPlayer == nullptr))
+ if (actorManager == nullptr || localPlayer == nullptr)
{
BLOCK_END("BeingRecv::processBeingResurrect")
return;
@@ -1274,6 +1277,12 @@ void BeingRecv::processBeingResurrect(Net::MessageIn &msg)
// If this is player's current target, clear it.
if (dstBeing == localPlayer->getTarget())
localPlayer->stopAttack();
+ if (dstBeing == localPlayer &&
+ deathNotice != nullptr)
+ {
+ deathNotice->scheduleDelete();
+ deathNotice = nullptr;
+ }
if (msg.readInt16("flag?") == 1)
dstBeing->setAction(BeingAction::STAND, 0);