Skip to content

Commit 68da6b9

Browse files
committed
v5.0-beta-13
1 parent 2c7b540 commit 68da6b9

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

CHANGELOG.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
| Version | Release Date |
55
| ----------------------------------------- | ------------ |
66
| [Work In Progress](#work-in-progress) | `TBA` |
7+
| [5.0 BETA 13](#50-beta-13) | `2023.08.01` |
78
| [5.0 BETA 12**C**](#50-beta-12c) | `2023.03.11` |
89
| [5.0 BETA 12**B**](#50-beta-12b) | `2022.12.25` |
910
| [5.0 BETA 12](#50-beta-12) | `2022.12.24` |
@@ -29,6 +30,10 @@
2930

3031
# Work In Progress
3132

33+
Nothing so far!
34+
35+
# 5.0 BETA 13
36+
3237
### Additions
3338
- Updated to support 1.4.4 Terraria and 2023 TModLoader.
3439
- 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.):
@@ -70,11 +75,11 @@
7075
- Aimable weapons no longer show during NPC dialogues.
7176

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

7984
### Netcode
8085
- Fixed some cases of desynchronization within power attacks.

OverhaulMod.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ namespace TerrariaOverhaul;
1010

1111
public class OverhaulMod : Mod
1212
{
13-
public static readonly uint BetaNumber = 12;
13+
public static readonly uint BetaNumber = 13;
1414
public static readonly bool IsBeta = BetaNumber > 0;
15-
public static readonly string VersionSuffix = $"(BETA {BetaNumber}C)";
15+
public static readonly string VersionSuffix = $"(BETA {BetaNumber})";
1616
public static readonly string PersonalDirectory = Path.Combine(Main.SavePath, "TerrariaOverhaul");
1717
public static readonly Version MinimalTMLVersion = new("0.12");
1818
public static readonly Assembly Assembly;

build.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
author = Mirsario
2-
version = 5.0.0.28
3-
displayName = Terraria Overhaul (v5.0 BETA 12C)
2+
version = 5.0.0.30
3+
displayName = Terraria Overhaul (v5.0 BETA 13)
44
homepage = https://github.com/Mirsario/TerrariaOverhaul
55
hideCode = false
66
hideResources = false

0 commit comments

Comments
 (0)