Skip to content

Commit

Permalink
Merge branch 'ACEmulator:master' into YonnehTown
Browse files Browse the repository at this point in the history
  • Loading branch information
Yonneh0 authored Feb 17, 2025
2 parents d6b1534 + 448956d commit e0bfd41
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions Source/ACE.DatLoader.Tests/ACE.DatLoader.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="MSTest.TestAdapter" Version="3.7.1" />
<PackageReference Include="MSTest.TestFramework" Version="3.7.1" />
<PackageReference Include="MSTest.TestAdapter" Version="3.7.3" />
<PackageReference Include="MSTest.TestFramework" Version="3.7.3" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Source/ACE.DatLoader/DatReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ private static byte[] ReadDat(FileStream stream, uint offset, uint size, uint bl

while (size > 0)
{
if (size < blockSize)
if (nextAddress == 0)
{
stream.Read(buffer, bufferOffset, Convert.ToInt32(size));
size = 0; // We know we've read the only/last sector, so just set this to zero to proceed.
Expand Down
4 changes: 2 additions & 2 deletions Source/ACE.Database.Tests/ACE.Database.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
<ItemGroup>
<PackageReference Include="Appveyor.TestLogger" Version="2.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="MSTest.TestAdapter" Version="3.7.1" />
<PackageReference Include="MSTest.TestFramework" Version="3.7.1" />
<PackageReference Include="MSTest.TestAdapter" Version="3.7.3" />
<PackageReference Include="MSTest.TestFramework" Version="3.7.3" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions Source/ACE.Server.Tests/ACE.Server.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
<ItemGroup>
<PackageReference Include="Appveyor.TestLogger" Version="2.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="MSTest.TestAdapter" Version="3.7.1" />
<PackageReference Include="MSTest.TestFramework" Version="3.7.1" />
<PackageReference Include="MSTest.TestAdapter" Version="3.7.3" />
<PackageReference Include="MSTest.TestFramework" Version="3.7.3" />
</ItemGroup>

<ItemGroup>
Expand Down
14 changes: 7 additions & 7 deletions Source/ACE.Server/ServerBuildInfo_Dynamic.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ namespace ACE.Server
public static partial class ServerBuildInfo
{
public static string Branch = "master";
public static string Commit = "3f255c321e3dcc66b79af5565c87e2ee818934af";
public static string Commit = "d05d87acffbce6c80366114009e1fcb1def73cf2";

public static string Version = "1.66";
public static string Build = "4630";
public static string Build = "4633";

public static int BuildYear = 2025;
public static int BuildMonth = 01;
public static int BuildDay = 15;
public static int BuildHour = 02;
public static int BuildMinute = 11;
public static int BuildSecond = 03;
public static int BuildMonth = 02;
public static int BuildDay = 01;
public static int BuildHour = 21;
public static int BuildMinute = 58;
public static int BuildSecond = 56;
}
}

0 comments on commit e0bfd41

Please sign in to comment.