Compare commits

..

No commits in common. '627507ff9b577dd0f48f29993ab4782bdb73174a' and 'c4c099bc1d1f35ac95eb1039d9d36e0cf53e090f' have entirely different histories.

@ -35,7 +35,7 @@
<Reference Include="LogicWorld.BuildingManagement"> <Reference Include="LogicWorld.BuildingManagement">
<HintPath>$(LogicWorldGameLocation)\Logic_World_Data\Managed\LogicWorld.BuildingManagement.dll</HintPath> <HintPath>$(LogicWorldGameLocation)\Logic_World_Data\Managed\LogicWorld.BuildingManagement.dll</HintPath>
</Reference> </Reference>
<Reference Include="LogicWorld.Players"> <Reference Include="LogicWorld.Building">
<HintPath>$(LogicWorldGameLocation)\Logic_World_Data\Managed\LogicWorld.Players.dll</HintPath> <HintPath>$(LogicWorldGameLocation)\Logic_World_Data\Managed\LogicWorld.Players.dll</HintPath>
</Reference> </Reference>
<Reference Include="LogicWorld.Physics"> <Reference Include="LogicWorld.Physics">

@ -1,7 +1,7 @@
ID: CriticalPathAnalyzer ID: CriticalPathAnalyzer
Name: CriticalPathAnalyzer Name: CriticalPathAnalyzer
Author: D4VID Author: D4VID
Version: 0.3.1 Version: 0.3.0
Priority: 0 Priority: 0
Dependencies: Dependencies:
- EccsLogicWorldAPI - EccsLogicWorldAPI

@ -46,7 +46,7 @@ namespace CriticalPathAnalyzer.Server {
/// Used to check if the player has this mod installed /// Used to check if the player has this mod installed
/// </summary> /// </summary>
public void Verify(VerificationContext ctx) { public void Verify(VerificationContext ctx) {
bool hasMod = ctx.ApprovalPacket.ClientMods.Contains((Manifest.ID, Manifest.Version)); bool hasMod = ctx.ApprovalPacket.ClientMods.Contains(Manifest.ID);
string playerName = ctx.PlayerID.Name; string playerName = ctx.PlayerID.Name;
_playerHasWireTracer[playerName] = hasMod; _playerHasWireTracer[playerName] = hasMod;
LoggerInstance.Info($"Verifying player {playerName}: hasMod={hasMod}"); LoggerInstance.Info($"Verifying player {playerName}: hasMod={hasMod}");

Loading…
Cancel
Save