You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
777 B
C++
34 lines
777 B
C++
//
|
|
// Created by koncord on 01.04.17.
|
|
//
|
|
|
|
#ifndef OPENMW_PROCESSORPLAYERRESURRECT_HPP
|
|
#define OPENMW_PROCESSORPLAYERRESURRECT_HPP
|
|
|
|
#include "../PlayerProcessor.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class ProcessorPlayerResurrect : public PlayerProcessor
|
|
{
|
|
public:
|
|
ProcessorPlayerResurrect()
|
|
{
|
|
BPP_INIT(ID_PLAYER_RESURRECT)
|
|
}
|
|
|
|
void Do(PlayerPacket &packet, Player &player) override
|
|
{
|
|
LOG_MESSAGE_SIMPLE(Log::LOG_VERBOSE, "Received %s from %s", strPacketID.c_str(), player.npc.mName.c_str());
|
|
|
|
player.creatureStats.mDead = false;
|
|
|
|
packet.Send(true);
|
|
|
|
Plugin::Call<CallbackIndex("OnPlayerResurrect")>(player.getId());
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PROCESSORPLAYERRESURRECT_HPP
|