mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-24 06:23:52 +00:00
975797c09b
Restocking object containers via trading now requires the server to send back an ObjectRestock packet before it can happen. The unused packet ID ID_SCRIPT_GLOBAL_FLOAT has been replaced with ID_OBJECT_RESTOCK.
15 lines
342 B
C++
15 lines
342 B
C++
#ifndef OPENMW_PACKETOBJECTRESTOCK_HPP
|
|
#define OPENMW_PACKETOBJECTRESTOCK_HPP
|
|
|
|
#include <components/openmw-mp/Packets/Object/ObjectPacket.hpp>
|
|
|
|
namespace mwmp
|
|
{
|
|
class PacketObjectRestock : public ObjectPacket
|
|
{
|
|
public:
|
|
PacketObjectRestock(RakNet::RakPeerInterface *peer);
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PACKETOBJECTRESTOCK_HPP
|