Skip to content

Commit

Permalink
FIX SDE import (#277)
Browse files Browse the repository at this point in the history
Critical fix
  • Loading branch information
pfh59 authored Jun 13, 2024
1 parent 2c98b7f commit 638867e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/WHMapper.Tests/Models/Graph/GraphModelsTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class GraphModelsTest


private const float SOLAR_SYSTEM_JITA_SECURITY = 1.0F;
private const float SOLAR_SYSTEM_AMAMAKE_SECURITY = -0.4F;
private const float SOLAR_SYSTEM_AMAMAKE_SECURITY = 0.4F;


private const int SOLAR_SYSTEM_WH_ID = 31001123;
Expand Down
6 changes: 3 additions & 3 deletions src/WHMapper/Services/SDE/SDEServices.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ public class SDEServices : ISDEServices
private const string SDE_ZIP_PATH = @"./Resources/SDE/sde.zip";
private const string SDE_TARGET_DIRECTORY = @"./Resources/SDE/universe";

private const string SDE_EVE_TARGET_DIRECTORY = @"./Resources/SDE/universe/sde/fsd/universe/eve";
private const string SDE_WORMHOLE_TARGET_DIRECTORY = @"./Resources/SDE/universe/sde/fsd/universe/wormhole";
private const string SDE_DEFAULT_SOLARSYSTEM_STATIC_FILEMANE = "solarsystem.staticdata";
private const string SDE_EVE_TARGET_DIRECTORY = @"./Resources/SDE/universe/universe/eve";
private const string SDE_WORMHOLE_TARGET_DIRECTORY = @"./Resources/SDE/universe/universe/wormhole";
private const string SDE_DEFAULT_SOLARSYSTEM_STATIC_FILEMANE = "solarsystem.yaml";

private readonly ILogger _logger;
private readonly ParallelOptions _options;
Expand Down

0 comments on commit 638867e

Please sign in to comment.