From 169889bcbcbb575c89c1022d9475ccae5972a3c2 Mon Sep 17 00:00:00 2001 From: Matei Date: Thu, 23 Feb 2006 01:26:02 +0000 Subject: [PATCH] Small bug fix so issueCommand works for NMT_Produce. This was SVN commit r3549. --- source/ps/Network/NetMessage.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/source/ps/Network/NetMessage.cpp b/source/ps/Network/NetMessage.cpp index 83eb71b4b2..f1efe69204 100755 --- a/source/ps/Network/NetMessage.cpp +++ b/source/ps/Network/NetMessage.cpp @@ -185,6 +185,7 @@ CNetCommand *CNetMessage::CommandFromJSArgs(const CEntityList &entities, JSConte case NMT_ ## _msg: \ { \ C##_msg *msg = new C##_msg(); \ + msg->m_Entities = entities; \ ReadInt(msg, m_Type); \ ReadString(msg, m_Name); \ return msg; \