diff --git a/apps/openmw-mp/processors/player/ProcessorPlayerKillCount.hpp b/apps/openmw-mp/processors/player/ProcessorPlayerKillCount.hpp deleted file mode 100644 index 2cde7e3af..000000000 --- a/apps/openmw-mp/processors/player/ProcessorPlayerKillCount.hpp +++ /dev/null @@ -1,27 +0,0 @@ -#ifndef OPENMW_PROCESSORWORLDKILLCOUNT_HPP -#define OPENMW_PROCESSORWORLDKILLCOUNT_HPP - -#include "../PlayerProcessor.hpp" - -namespace mwmp -{ - class ProcessorWorldKillCount : public PlayerProcessor - { - public: - ProcessorWorldKillCount() - { - BPP_INIT(ID_WORLD_KILL_COUNT) - } - - void Do(PlayerPacket &packet, Player &player) override - { - DEBUG_PRINTF(strPacketID.c_str()); - - packet.Send(true); - - Script::Call(player.getId()); - } - }; -} - -#endif //OPENMW_PROCESSORWORLDKILLCOUNT_HPP