mirror of
				https://github.com/TES3MP/openmw-tes3mp.git
				synced 2025-11-04 10:26:42 +00:00 
			
		
		
		
	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
		
	
	
	
		
			726 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			726 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef OPENMW_PROCESSOROBJECTSTATE_HPP
 | 
						|
#define OPENMW_PROCESSOROBJECTSTATE_HPP
 | 
						|
 | 
						|
#include "../ObjectProcessor.hpp"
 | 
						|
 | 
						|
namespace mwmp
 | 
						|
{
 | 
						|
    class ProcessorObjectState : public ObjectProcessor
 | 
						|
    {
 | 
						|
    public:
 | 
						|
        ProcessorObjectState()
 | 
						|
        {
 | 
						|
            BPP_INIT(ID_OBJECT_STATE)
 | 
						|
        }
 | 
						|
 | 
						|
        void Do(ObjectPacket &packet, Player &player, BaseObjectList &objectList) override
 | 
						|
        {
 | 
						|
            LOG_MESSAGE_SIMPLE(TimedLog::LOG_INFO, "Received %s from %s", strPacketID.c_str(), player.npc.mName.c_str());
 | 
						|
            
 | 
						|
            Script::Call<Script::CallbackIdentity("OnObjectState")>(player.getId(), objectList.cell.getShortDescription().c_str());
 | 
						|
        }
 | 
						|
    };
 | 
						|
}
 | 
						|
 | 
						|
#endif //OPENMW_PROCESSOROBJECTSTATE_HPP
 |