Skip to content

Commit

Permalink
Fix FillableContainer default WeaponSmith
Browse files Browse the repository at this point in the history
  • Loading branch information
Reetus committed Jan 14, 2025
1 parent ec12eb0 commit 843a3ea
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ private void DeserializeRespawnTimer(TimeSpan delay)
}
}

public FillableContainer(int itemID) : base(itemID) => Movable = false;
public FillableContainer(int itemID) : base(itemID)
{
Movable = false;
ContentType = FillableContentType.None;
}

public virtual int MinRespawnMinutes => 60;
public virtual int MaxRespawnMinutes => 90;
Expand Down

0 comments on commit 843a3ea

Please sign in to comment.