using System;
using System.Collections.Generic;
using cfg;
namespace Activity.Condition
{
///
/// AB测试条件检查器
///
public class ABTestConditionChecker : IConditionChecker
{
public int Priority => 999;
public List CareDataChangeWithType => null;
public bool NeedContinueListenAfterSatisfied => false;
public bool CanOpen(FishingEvent fishingEvent)
{
// AB测试类型的活动不启用
return !fishingEvent.IsABTest;
}
}
}