From 4ac371d2923eb91e5e9876e101088cc73a91323c Mon Sep 17 00:00:00 2001 From: David Cernat Date: Sun, 15 Jul 2018 05:49:19 +0300 Subject: [PATCH] [Server] Delete duplicate WorldKillCount processor with old filename --- .../player/ProcessorPlayerKillCount.hpp | 27 ------------------- 1 file changed, 27 deletions(-) delete mode 100644 apps/openmw-mp/processors/player/ProcessorPlayerKillCount.hpp 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