summaryrefslogtreecommitdiff
path: root/src/net/tmwa/partyhandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-12-16 17:16:48 +0300
committerAndrei Karas <akaras@inbox.ru>2014-12-16 17:16:48 +0300
commit382e4efcd1a7151a168657b0c731e9e758e7008d (patch)
treea163892525d7b39a6a299a60809cae266575131a /src/net/tmwa/partyhandler.cpp
parent1f4844a5c4c958fe9ca8767e8f820c923549e0b7 (diff)
downloadManaVerse-382e4efcd1a7151a168657b0c731e9e758e7008d.tar.gz
ManaVerse-382e4efcd1a7151a168657b0c731e9e758e7008d.tar.bz2
ManaVerse-382e4efcd1a7151a168657b0c731e9e758e7008d.tar.xz
ManaVerse-382e4efcd1a7151a168657b0c731e9e758e7008d.zip
Move processPartyUpdateHp from ea namespace into tmwa.
Diffstat (limited to 'src/net/tmwa/partyhandler.cpp')
-rw-r--r--src/net/tmwa/partyhandler.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/net/tmwa/partyhandler.cpp b/src/net/tmwa/partyhandler.cpp
index 3e16fc08a..9cfd8986c 100644
--- a/src/net/tmwa/partyhandler.cpp
+++ b/src/net/tmwa/partyhandler.cpp
@@ -435,4 +435,27 @@ void PartyHandler::processPartyMove(Net::MessageIn &msg)
}
}
+void PartyHandler::processPartyUpdateHp(Net::MessageIn &msg)
+{
+ const int id = msg.readInt32("id");
+ const int hp = msg.readInt16("hp");
+ const int maxhp = msg.readInt16("max hp");
+ PartyMember *m = nullptr;
+ if (Ea::taParty)
+ m = Ea::taParty->getMember(id);
+ if (m)
+ {
+ m->setHp(hp);
+ m->setMaxHp(maxhp);
+ }
+
+ // The server only sends this when the member is in range, so
+ // lets make sure they get the party hilight.
+ if (actorManager && Ea::taParty)
+ {
+ if (Being *const b = actorManager->findBeing(id))
+ b->setParty(Ea::taParty);
+ }
+}
+
} // namespace TmwAthena