File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313- Changed "Not the Bees" effect to increase the number of bees spawned.
1414- Changed "Give Nadir" effect to increase the max stack size to avoid filling the inventory if spammed.
1515- Changed "Infinite Ammo & Mana" effect to increase maximum number of sentries and turrets.
16+ - Fixed startup error caused by tModLoader changes to PlayerDrawLayer.
1617
1718## [ 2.1.0] - 2024-08-31
1819
Original file line number Diff line number Diff line change @@ -221,7 +221,8 @@ public override bool GetDefaultVisibility(PlayerDrawSet drawInfo)
221221
222222 public override Position GetDefaultPosition ( )
223223 {
224- return new Between ( PlayerDrawLayers . Skin , PlayerDrawLayers . HeldItem ) ;
224+ return new Between ( null , PlayerDrawLayers . FirstVanillaLayer ) ;
225+ // return new Between(PlayerDrawLayers.Skin, PlayerDrawLayers.HeldItem);
225226 }
226227
227228 protected override void Draw ( ref PlayerDrawSet drawInfo )
You can’t perform that action at this time.
0 commit comments