Files
SPT-Server-Build/Core/Models/Enums/ModSpawn.cs
T
2025-01-07 17:28:49 +00:00

11 lines
242 B
C#

namespace 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,
}