public class RequirementGore : RequirementBase { public override bool ParamsValid(MinEventParams _params) { string optionGore = RebirthVariables.customGore; bool isSinglePlayer = SingletonMonoBehaviour.Instance.IsSinglePlayer; if (isSinglePlayer && optionGore == "bloodsplatter") { return true; } return false; } }