mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-20 07:53:51 +00:00
d163f1b6da
Rename the old WorldKillCount that was a Player packet into PlayerPlaceholder. Rename the unused CellCreate that was a Worldstate packet into WorldKillCount. On the server, move kill count-related script functions from QuestFunctions to WorldstateFunctions.
23 lines
494 B
C++
23 lines
494 B
C++
#ifndef OPENMW_PROCESSORPLACEHOLDER_HPP
|
|
#define OPENMW_PROCESSORPLACEHOLDER_HPP
|
|
|
|
#include "../PlayerProcessor.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class ProcessorPlayerPlaceholder : public PlayerProcessor
|
|
{
|
|
public:
|
|
ProcessorPlayerPlaceholder()
|
|
{
|
|
BPP_INIT(ID_WORLD_KILL_COUNT)
|
|
}
|
|
|
|
void Do(PlayerPacket &packet, Player &player) override
|
|
{
|
|
DEBUG_PRINTF(strPacketID.c_str());
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PROCESSORPLACEHOLDER_HPP
|