* Replace usages of customTypeSerializer PrototypeIdListSerializer with something that doesn't take 20 separate words to type out * Missed one * Missed another * Fix data field ids
12 lines
306 B
C#
12 lines
306 B
C#
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared.Salvage.Expeditions.Modifiers;
|
|
|
|
public interface IBiomeSpecificMod : ISalvageMod
|
|
{
|
|
/// <summary>
|
|
/// Whitelist for biomes. If null then any biome is allowed.
|
|
/// </summary>
|
|
List<ProtoId<SalvageBiomeModPrototype>>? Biomes { get; }
|
|
}
|