Skip to content

Commit

Permalink
all candies (#2214)
Browse files Browse the repository at this point in the history
  • Loading branch information
VALERA771 authored Nov 9, 2023
1 parent 9d8ff5a commit 6c3d9f8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Exiled.API/Features/Items/Scp330.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public enum CandyAddStatus
/// <summary>
/// A wrapper class for SCP-330 bags.
/// </summary>
public partial class Scp330 : Usable, IWrapper<Scp330Bag>
public class Scp330 : Usable, IWrapper<Scp330Bag>
{
/// <summary>
/// Initializes a new instance of the <see cref="Scp330"/> class.
Expand All @@ -66,6 +66,11 @@ internal Scp330()
Base.Candies.Add(Scp330Candies.GetRandom());
}

/// <summary>
/// Gets the <see cref="Dictionary{TKey,TValue}"/> with all presented in game candies.
/// </summary>
public static Dictionary<CandyKindID, ICandy> AvailableCandies { get; } = Scp330Candies.CandiesById;

/// <summary>
/// Gets the <see cref="Scp330Bag"/> that this class is encapsulating.
/// </summary>
Expand Down

0 comments on commit 6c3d9f8

Please sign in to comment.