Updates submodule (#22)

* Updates submodule

Fix connect not entering server (with correct toml config) and compile error, updates submodule
Server still has an issue with toml file pointing towards sandbox instead of content and roundstart object initializations

* Updates more stuff

Needs my most recent PR on ss14 to function

* Submodule updated for real this time
This commit is contained in:
clusterfack
2018-01-18 13:00:35 -06:00
committed by Pieter-Jan Briers
parent 37091d1254
commit 5ee56a4cd3
5 changed files with 153 additions and 13 deletions

View File

@@ -9,6 +9,7 @@ using System;
using System.Collections.Generic;
using YamlDotNet.RepresentationModel;
using Lidgren.Network;
using SS14.Shared.Enums;
namespace Content.Server.GameObjects
{
@@ -257,7 +258,7 @@ namespace Content.Server.GameObjects
ActiveIndex = orderedHands[index];
}
public override void HandleNetworkMessage(IncomingEntityComponentMessage message, NetConnection sender)
public override void HandleNetworkMessage(IncomingEntityComponentMessage message)
{
if (message.MessageParameters.Count != 1)
{
@@ -268,7 +269,7 @@ namespace Content.Server.GameObjects
{
ActiveIndex = newIndex;
}
base.HandleNetworkMessage(message, sender);
base.HandleNetworkMessage(message);
}
}
}