Skip to content

Commit

Permalink
chore(deps): remove toml support
Browse files Browse the repository at this point in the history
  • Loading branch information
MeikelLP committed Dec 21, 2024
1 parent ec4db3c commit 1747924
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/Core/Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Alexinea.Extensions.Configuration.Toml" Version="7.0.0" />
<PackageReference Include="BCrypt.Net-Next" Version="4.0.3" />
<PackageReference Include="lzo.net" Version="0.0.6" />
<PackageReference Include="McMaster.NETCore.Plugins" Version="1.4.0" />
Expand Down
2 changes: 0 additions & 2 deletions src/Tests/Game.Tests/CommandTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,6 @@ public async Task SpawnCommand_WithoutCount()
world.SpawnEntity(_player);
world.Update(0); // spawn entities
_player.Move((int)(Map.MapUnit * 13), (int)(Map.MapUnit * 29)); // center of the map
await File.WriteAllTextAsync("settings.toml", @"maps = [""map_a2"", ""map_b2""]");
_player.Map.Entities.Count.Should().Be(1);

await _commandManager.Handle(_connection, "/spawn 101");
Expand All @@ -593,7 +592,6 @@ public async Task SpawnCommand_WithCount()
world.SpawnEntity(_player);
world.Update(0); // spawn entities
_player.Move((int)(Map.MapUnit * 13), (int)(Map.MapUnit * 29)); // center of the map
await File.WriteAllTextAsync("settings.toml", @"maps = [""map_a2"", ""map_b2""]");
_player.Map.Entities.Count.Should().Be(1);

await _commandManager.Handle(_connection, "/spawn 101 10");
Expand Down

0 comments on commit 1747924

Please sign in to comment.