Skip to content

Commit

Permalink
v4.8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
BinaryConstruct committed May 17, 2022
1 parent fd7179f commit af2f41a
Show file tree
Hide file tree
Showing 3 changed files with 3 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.8.3",
[string] $VersionPrefix = "4.8.4",
[string] $VersionSuffix = ""
)

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.8.3</VersionPrefix>
<VersionPrefix>4.8.4</VersionPrefix>
<VersionSuffix></VersionSuffix>
<Platforms>AnyCPU</Platforms>
<ApplicationManifest>app.manifest</ApplicationManifest>
Expand Down
2 changes: 1 addition & 1 deletion src/TEdit/Terraria/World.FileV2.cs
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,7 @@ public static int SaveHeaderFlags(World world, BinaryWriter bw, int version)
}

// 1.4 Journey's End
if (world.Version >= 194)
if (world.Version > 194)
{
bw.Write((byte)world.MushroomBg);
}
Expand Down

0 comments on commit af2f41a

Please sign in to comment.