diff options
Diffstat (limited to 'src/net')
-rw-r--r-- | src/net/eathena/playerrecv.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/eathena/playerrecv.cpp b/src/net/eathena/playerrecv.cpp index b58872712..8ceefa350 100644 --- a/src/net/eathena/playerrecv.cpp +++ b/src/net/eathena/playerrecv.cpp @@ -435,7 +435,7 @@ void PlayerRecv::processDressRoomOpen(Net::MessageIn &msg) void PlayerRecv::processKilledBy(Net::MessageIn &msg) { const BeingId id = msg.readBeingId("killer id"); - Being *const dstBeing = actorManager->findBeing(id); + const Being *const dstBeing = actorManager->findBeing(id); if (id == BeingId_zero) { debugMsg(strprintf( |