Files
tbd-station-14/Content.Shared/Salvage/Expeditions/Modifiers/IBiomeSpecificMod.cs
DrSmugleaf 00826aaad6 Replace usages of customTypeSerializer PrototypeIdListSerializer with something that doesn't take 20 separate words to type out (#37959)
* 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
2025-07-10 05:06:51 +02:00

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; }
}