Round of bugfixes.
This commit is contained in:
parent
903cb95f1e
commit
8839baa687
|
@ -5,7 +5,7 @@
|
|||
<HasSharedItems>true</HasSharedItems>
|
||||
<SharedGUID>8a3cdcc5-4b55-4d87-a415-698a0e1ff06f</SharedGUID>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="$(MSBuildThisFileDirectory)/**/*.cs" Visible=" '$(ShowCommonFiles)' == 'true' " />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Console.cs" />
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -1,5 +1,7 @@
|
|||
using Sandbox.ModAPI.Ingame;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using VRage.Game.ModAPI.Ingame.Utilities;
|
||||
|
||||
namespace IngameScript
|
||||
{
|
||||
|
@ -17,6 +19,7 @@ namespace IngameScript
|
|||
{
|
||||
private Program _program;
|
||||
private IConsole _console;
|
||||
private MyIni _ini;
|
||||
|
||||
private string _id;
|
||||
private int _rank;
|
||||
|
@ -55,10 +58,10 @@ namespace IngameScript
|
|||
{
|
||||
_ini.TryParse(node.CustomData);
|
||||
|
||||
string foreignId = _ini.Get("failover", "id");
|
||||
string foreignId = _ini.Get("failover", "id").ToString();
|
||||
if (foreignId != _id) continue;
|
||||
|
||||
int foreignRank = _ini.Get("failover", "rank");
|
||||
int foreignRank = _ini.Get("failover", "rank").ToInt32(-1);
|
||||
if (foreignRank == -1) continue;
|
||||
|
||||
_nodes[foreignRank] = node;
|
||||
|
|
|
@ -11,4 +11,4 @@
|
|||
<ItemGroup>
|
||||
<None Include="$(MSBuildThisFileDirectory)readme.md" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
</Project>
|
||||
|
|
|
@ -15,6 +15,5 @@
|
|||
<OutputPath>bin\Release\</OutputPath>
|
||||
</PropertyGroup>
|
||||
<Import Project="FailoverManager.projitems" Label="Shared"/>
|
||||
<Import Project="../Console/Console.projitems" Label="Shared"/>
|
||||
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\CodeSharing\Microsoft.CodeSharing.CSharp.targets"/>
|
||||
</Project>
|
||||
|
|
Loading…
Reference in New Issue
Block a user