1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-24 18:23:52 +00:00
openmw-tes3mp/apps/openmw/mwmp/processors/player/ProcessorPlayerReputation.hpp
2019-10-24 22:16:17 +03:00

32 lines
735 B
C++

#ifndef OPENMW_PROCESSORPLAYERREPUTATION_HPP
#define OPENMW_PROCESSORPLAYERREPUTATION_HPP
#include "../PlayerProcessor.hpp"
namespace mwmp
{
class ProcessorPlayerReputation final: public PlayerProcessor
{
public:
ProcessorPlayerReputation()
{
BPP_INIT(ID_PLAYER_REPUTATION)
}
virtual void Do(PlayerPacket &packet, BasePlayer *player)
{
if (isRequest())
{
static_cast<LocalPlayer *>(player)->updateReputation(true);
}
else if (player != 0)
{
static_cast<LocalPlayer *>(player)->setReputation();
}
}
};
}
#endif //OPENMW_PROCESSORPLAYERREPUTATION_HPP