mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 07:49:56 +00:00
7393e3def6
ESM::Cell's getDescription() method was modified by aa5161f99e
despite being used heavily by TES3MP. All instances of it in the TES3MP code have now been changed into the newly added getShortDescription() that is identical to the previous getDescription().
24 lines
678 B
C++
24 lines
678 B
C++
#ifndef OPENMW_BASEOBJECTPROCESSOR_HPP
|
|
#define OPENMW_BASEOBJECTPROCESSOR_HPP
|
|
|
|
#include "../ObjectProcessor.hpp"
|
|
#include "apps/openmw/mwmp/Main.hpp"
|
|
#include "apps/openmw/mwmp/CellController.hpp"
|
|
#include "apps/openmw/mwworld/cellstore.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class BaseObjectProcessor : public ObjectProcessor
|
|
{
|
|
public:
|
|
virtual void Do(ObjectPacket &packet, ObjectList &objectList)
|
|
{
|
|
LOG_MESSAGE_SIMPLE(TimedLog::LOG_VERBOSE, "Received %s about %s", strPacketID.c_str(), objectList.cell.getShortDescription().c_str());
|
|
}
|
|
protected:
|
|
MWWorld::CellStore *ptrCellStore;
|
|
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_BASEOBJECTPROCESSOR_HPP
|