Skip to content

Commit

Permalink
reverted some fix
Browse files Browse the repository at this point in the history
  • Loading branch information
direwolf420 committed May 14, 2020
1 parent 56bd852 commit 8ef4633
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 11 deletions.
2 changes: 0 additions & 2 deletions AssPlayer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -514,8 +514,6 @@ public override void Initialize()
shieldDroneLerpVisual = 0;
drawEffectsCalledOnce = false;

if (Main.netMode == NetmodeID.MultiplayerClient && !Main.gameMenu) return;

//needs to call new List() since Initialize() is called per player in the player select screen
CircleUIList = new List<CircleUIHandler>
{
Expand Down
2 changes: 0 additions & 2 deletions GitGudPlayer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -762,8 +762,6 @@ public override void ResetEffects()

public override void Initialize()
{
if (Main.netMode == NetmodeID.MultiplayerClient && !Main.gameMenu) return;

gitgudAccessories = new Func<BitArray>(() => new BitArray(new bool[]
{
kingSlimeGitgud,
Expand Down
7 changes: 0 additions & 7 deletions PetPlayer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -158,10 +158,6 @@ public class PetPlayer : ModPlayer
public bool SoulLightPet2 = false;
public bool DocileDemonEye = false;
public bool QueenLarva = false;
/// <summary>
/// Deprecated
/// </summary>
public bool HealingDrone = false;
public bool PetSun = false;
public bool PetMoon = false;
public bool WallFragment = false;
Expand Down Expand Up @@ -252,7 +248,6 @@ public override void ResetEffects()
SoulLightPet2 = false;
DocileDemonEye = false;
QueenLarva = false;
HealingDrone = false;
PetSun = false;
PetMoon = false;
WallFragment = false;
Expand Down Expand Up @@ -769,8 +764,6 @@ public static CircleUIConf GetAnimatedTomeConf()

public override void Initialize()
{
if (Main.netMode == NetmodeID.MultiplayerClient && !Main.gameMenu) return;

//called before Load()
//needs to call new List() since Initialize() is called per player in the player select screen
CircleUIList = new List<CircleUIHandler>
Expand Down

0 comments on commit 8ef4633

Please sign in to comment.