Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Enums/ModSpawn.cs
T
2025-06-18 17:09:20 +00:00

20 lines
297 B
C#

namespace SPTarkov.Server.Core.Models.Enums;
public enum ModSpawn
{
/**
* Chosen mod should be the tpl from the default weapon template
*/
DEFAULT_MOD = 0,
/**
* Normal behaviour
*/
SPAWN = 1,
/**
* Item should not be chosen
*/
SKIP = 2,
}