From 096dd21234aa3a7c6d54a03c6fdde15e640c37b6 Mon Sep 17 00:00:00 2001 From: ngdeao Date: Tue, 12 Apr 2016 21:27:59 -0600 Subject: [PATCH] Fix for RoF2 clients connecting and don't appear in the zone to others. --- zone/client_packet.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zone/client_packet.cpp b/zone/client_packet.cpp index a47903177..561a0689c 100644 --- a/zone/client_packet.cpp +++ b/zone/client_packet.cpp @@ -1004,7 +1004,8 @@ void Client::Handle_Connect_OP_ClientError(const EQApplicationPacket *app) void Client::Handle_Connect_OP_ClientReady(const EQApplicationPacket *app) { conn_state = ClientReadyReceived; - + if (!Spawned()) + SendZoneInPackets(); CompleteConnect(); SendHPUpdate(); }