[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) PacketActorCast::PacketActorCast(RakNet::RakPeerInterface *peer) : ActorPacket(peer)
{ {
packetID = ID_ACTOR_ATTACK; packetID = ID_ACTOR_CAST;
} }
void PacketActorCast::Actor(BaseActor &actor, bool send) void PacketActorCast::Actor(BaseActor &actor, bool send)