Skip to content

Commit

Permalink
Try to workaround type name conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
sailro committed Apr 28, 2024
1 parent f5669ad commit 8f593b1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ConsoleCommands/LoadTrackList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ public override void Execute(Match match)
if (!TryGetTrackListFilename(match, out var filename))
return;

ConfigurationManager.LoadPropertyValue(filename, LootItems, nameof(Features.LootItems.TrackedNames));
ConfigurationManager.LoadPropertyValue(filename, LootItems, nameof(LootItems.TrackedNames));
}
}
1 change: 1 addition & 0 deletions ConsoleCommands/LootItemsRelatedCommand.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using System;
using EFT.Trainer.Features;
using LootItems = EFT.Trainer.Features.LootItems;

#nullable enable

Expand Down
1 change: 1 addition & 0 deletions ConsoleCommands/TrackList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using EFT.Trainer.Extensions;
using EFT.Trainer.Features;
using JetBrains.Annotations;
using LootItems = EFT.Trainer.Features.LootItems;

#nullable enable

Expand Down

0 comments on commit 8f593b1

Please sign in to comment.