mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-30 03:45:32 +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().
25 lines
609 B
C++
25 lines
609 B
C++
#ifndef OPENMW_PROCESSORDOORSTATE_HPP
|
|
#define OPENMW_PROCESSORDOORSTATE_HPP
|
|
|
|
#include "../ObjectProcessor.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class ProcessorDoorState : public ObjectProcessor
|
|
{
|
|
public:
|
|
ProcessorDoorState()
|
|
{
|
|
BPP_INIT(ID_DOOR_STATE)
|
|
}
|
|
|
|
void Do(ObjectPacket &packet, Player &player, BaseObjectList &objectList) override
|
|
{
|
|
packet.Send(true);
|
|
|
|
Script::Call<Script::CallbackIdentity("OnDoorState")>(player.getId(), objectList.cell.getShortDescription().c_str());
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PROCESSORDOORSTATE_HPP
|