Added files that were missing from last commit

This commit is contained in:
Markus Isberg
2021-03-06 18:39:28 +02:00
parent cb969c959f
commit 0f6de8ada9
9 changed files with 1941 additions and 0 deletions
@@ -0,0 +1,18 @@
using Barotrauma.Networking;
namespace Barotrauma
{
partial class OutpostDestroyMission : AbandonedOutpostMission
{
public override void ClientReadInitial(IReadMessage msg)
{
base.ClientReadInitial(msg);
ushort itemCount = msg.ReadUInt16();
for (int i = 0; i < itemCount; i++)
{
var item = Item.ReadSpawnData(msg);
items.Add(item);
}
}
}
}