1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 18:19:55 +00:00

[General] Use correct packet ID in PacketActorCast

This commit is contained in:
David Cernat 2019-08-28 06:35:19 +03:00
parent 3a1e3cf0f5
commit 9b1fbcc6f9

View file

@ -6,7 +6,7 @@ using namespace mwmp;
PacketActorCast::PacketActorCast(RakNet::RakPeerInterface *peer) : ActorPacket(peer)
{
packetID = ID_ACTOR_ATTACK;
packetID = ID_ACTOR_CAST;
}
void PacketActorCast::Actor(BaseActor &actor, bool send)