Skip to content

Commit

Permalink
Version 4.4.1 hotfix world save
Browse files Browse the repository at this point in the history
  • Loading branch information
BinaryConstruct committed May 17, 2021
1 parent da90ab9 commit e99f838
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
param(
[string] $VersionPrefix = "4.4.0",
[string] $VersionPrefix = "4.4.1",
[string] $VersionSuffix = $null
)

Expand Down
2 changes: 1 addition & 1 deletion src/Setup/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class Script
{
static public void Main(string[] args)
{
var version = "4.4.0";
var version = "4.4.1";

try
{
Expand Down
2 changes: 1 addition & 1 deletion src/TEdit/TEdit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<DefaultNamespace>TEdit</DefaultNamespace>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>latest</LangVersion>
<VersionPrefix>4.4.0</VersionPrefix>
<VersionPrefix>4.4.1</VersionPrefix>
<VersionSuffix></VersionSuffix>
<Platforms>AnyCPU</Platforms>
<ApplicationManifest>app.manifest</ApplicationManifest>
Expand Down
1 change: 1 addition & 0 deletions src/TEdit/Terraria/World.FileV2.cs
Original file line number Diff line number Diff line change
Expand Up @@ -513,6 +513,7 @@ public static int SaveHeaderFlags(World world, BinaryWriter bw)
bw.Write(world.GameMode);
bw.Write(world.DrunkWorld);
bw.Write(world.GoodWorld);
bw.Write(world.TenthAnniversaryWorld);
bw.Write(world.CreationTime);
bw.Write((byte)world.MoonType);
bw.Write(world.TreeX0);
Expand Down

0 comments on commit e99f838

Please sign in to comment.