Skip to content

Commit c532c59

Browse files
committed
Merge branch 'upcoming' into upcoming-nuget-release
2 parents ed0eaf5 + 1a128b8 commit c532c59

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

OTAPI.Patcher/OTAPI.Patcher.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>net9.0</TargetFramework>
6-
<Version>3.3.10</Version>
6+
<Version>3.3.11</Version>
77
<PreserveCompilationContext>true</PreserveCompilationContext>
88
<RuntimeIdentifiers>win;osx;linux;</RuntimeIdentifiers>
99
<Nullable>enable</Nullable>
10-
<PackageReleaseNotes>Terraria 1.4.5.5 on .NET9</PackageReleaseNotes>
10+
<PackageReleaseNotes>Terraria 1.4.5.6 on .NET9</PackageReleaseNotes>
1111
</PropertyGroup>
1212
<ItemGroup>
1313
<PackageReference Include="ModFramework.Modules.ClearScript" Version="1.1.15" />

OTAPI.Patcher/Resolvers/PCFileResolver.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public class PCFileResolver : IFileResolver
2828
{
2929
public const String TerrariaWebsite = "https://terraria.org";
3030

31-
public virtual string SupportedDownloadUrl { get; } = $"{TerrariaWebsite}/api/download/pc-dedicated-server/terraria-server-1455.zip";
31+
public virtual string SupportedDownloadUrl { get; } = $"{TerrariaWebsite}/api/download/pc-dedicated-server/terraria-server-1456.zip";
3232

3333
public virtual string GetUrlFromHttpResponse(string content)
3434
{

OTAPI.Server.Launcher/OTAPI.Server.Launcher.csproj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,28 +35,28 @@
3535

3636
<ItemGroup>
3737
<Reference Include="OTAPI">
38-
<HintPath>..\OTAPI.Patcher\bin\$(Configuration)\$(TargetFramework)\OTAPI.dll</HintPath>
38+
<HintPath>../OTAPI.Patcher/bin/$(Configuration)/$(TargetFramework)/OTAPI.dll</HintPath>
3939
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
4040
</Reference>
4141
<Reference Include="OTAPI.Runtime">
42-
<HintPath>..\OTAPI.Patcher\bin\$(Configuration)\$(TargetFramework)\OTAPI.Runtime.dll</HintPath>
42+
<HintPath>../OTAPI.Patcher/bin/$(Configuration)/$(TargetFramework)/OTAPI.Runtime.dll</HintPath>
4343
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
4444
</Reference>
4545
</ItemGroup>
4646

47-
<Import Condition="Exists('..\OTAPI.Patcher\bin\$(Configuration)\$(TargetFramework)\AutoGenerated.target')" Project="..\OTAPI.Patcher\bin\$(Configuration)\$(TargetFramework)\AutoGenerated.target" />
47+
<Import Condition="Exists('../OTAPI.Patcher/bin/$(Configuration)/$(TargetFramework)/AutoGenerated.target')" Project="../OTAPI.Patcher/bin/$(Configuration)/$(TargetFramework)/AutoGenerated.target" />
4848

4949
<ItemGroup>
50-
<ProjectReference Include="..\examples\RuntimeExample.Server\RuntimeExample.Server.csproj" />
50+
<ProjectReference Include="../examples/RuntimeExample.Server/RuntimeExample.Server.csproj" />
5151
</ItemGroup>
5252

53-
<ItemGroup Condition="Exists('..\OTAPI.Patcher\bin\$(Configuration)\$(TargetFramework)\tModLoader')">
54-
<Content Include="..\OTAPI.Patcher\bin\$(Configuration)\$(TargetFramework)\tModLoader\**\*.*">
53+
<ItemGroup Condition="Exists('../OTAPI.Patcher/bin/$(Configuration)/$(TargetFramework)/tModLoader')">
54+
<Content Include="../OTAPI.Patcher/bin/$(Configuration)/$(TargetFramework)/tModLoader/***.*">
5555
<Link>tModLoader\%(RecursiveDir)%(Filename)%(Extension)</Link>
5656
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
5757
</Content>
5858
</ItemGroup>
59-
<PropertyGroup Condition="Exists('..\OTAPI.Patcher\bin\$(Configuration)\$(TargetFramework)\tModLoader')">
59+
<PropertyGroup Condition="Exists('../OTAPI.Patcher/bin/$(Configuration)/$(TargetFramework)/tModLoader')">
6060
<DefineConstants>$(DefineConstants);TML</DefineConstants>
6161
</PropertyGroup>
6262

OTAPI.Server.Launcher/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ void Print<TSender, TArgs>(TSender sender, TArgs args)
133133
HookEvents.Terraria.WorldGen.StartHardmode += Print;
134134
HookEvents.Terraria.WorldGen.SpreadGrass += Print;
135135
HookEvents.Terraria.Chat.ChatHelper.BroadcastChatMessage += Print;
136-
HookEvents.Terraria.IO.WorldFile.SaveWorld_Boolean_Boolean += Print;
136+
HookEvents.Terraria.IO.WorldFile.SaveWorld += Print;
137137
HookEvents.Terraria.Net.NetManager.SendData += Print;
138138
HookEvents.Terraria.Projectile.SetDefaults += Print;
139139
HookEvents.Terraria.Projectile.AI += Print;

0 commit comments

Comments
 (0)