Skip to content

Commit

Permalink
v5.0-beta-13
Browse files Browse the repository at this point in the history
  • Loading branch information
Mirsario committed Aug 1, 2023
1 parent 2c7b540 commit 68da6b9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
| Version | Release Date |
| ----------------------------------------- | ------------ |
| [Work In Progress](#work-in-progress) | `TBA` |
| [5.0 BETA 13](#50-beta-13) | `2023.08.01` |
| [5.0 BETA 12**C**](#50-beta-12c) | `2023.03.11` |
| [5.0 BETA 12**B**](#50-beta-12b) | `2022.12.25` |
| [5.0 BETA 12](#50-beta-12) | `2022.12.24` |
Expand All @@ -29,6 +30,10 @@

# Work In Progress

Nothing so far!

# 5.0 BETA 13

### Additions
- Updated to support 1.4.4 Terraria and 2023 TModLoader.
- Multiple features have been decoupled from "Item Overhauls", and will now appear on all fitting items in the game (including other mods' content), instead of only applying to thought-ahead categories of items ("shotguns", "bows", etc.):
Expand Down Expand Up @@ -70,11 +75,11 @@
- Aimable weapons no longer show during NPC dialogues.

### Fixes
- Fixed vanilla mining helmet light not appearing if `PlayerVisuals.EnableAimableFlashlights` is disabled.
- Fixed force applied to gores being biased towards the right, due to an incorrect linear interpolation function being used for velocity angles.
- Fixed the Axe of Regrowth not getting the Axe item overhaul.
- Fixed issue [#177](https://github.com/Mirsario/TerrariaOverhaul/issues/177) (Explosives ignore knockback resistance).
- Fixed issue [#124](https://github.com/Mirsario/TerrariaOverhaul/issues/124) (Unable to pet cats & dogs).
- Fixed issue [#188](https://github.com/Mirsario/TerrariaOverhaul/issues/188) (Vanilla mining helmet light not appearing if `PlayerVisuals.EnableAimableFlashlights` is disabled.)
- Fixed force applied to gores being biased towards the right, due to an incorrect linear interpolation function being used for velocity angles.
- Fixed the Axe of Regrowth not getting the Axe item overhaul.

### Netcode
- Fixed some cases of desynchronization within power attacks.
Expand Down
4 changes: 2 additions & 2 deletions OverhaulMod.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ namespace TerrariaOverhaul;

public class OverhaulMod : Mod
{
public static readonly uint BetaNumber = 12;
public static readonly uint BetaNumber = 13;
public static readonly bool IsBeta = BetaNumber > 0;
public static readonly string VersionSuffix = $"(BETA {BetaNumber}C)";
public static readonly string VersionSuffix = $"(BETA {BetaNumber})";
public static readonly string PersonalDirectory = Path.Combine(Main.SavePath, "TerrariaOverhaul");
public static readonly Version MinimalTMLVersion = new("0.12");
public static readonly Assembly Assembly;
Expand Down
4 changes: 2 additions & 2 deletions build.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
author = Mirsario
version = 5.0.0.28
displayName = Terraria Overhaul (v5.0 BETA 12C)
version = 5.0.0.30
displayName = Terraria Overhaul (v5.0 BETA 13)
homepage = https://github.com/Mirsario/TerrariaOverhaul
hideCode = false
hideResources = false
Expand Down

0 comments on commit 68da6b9

Please sign in to comment.