Exists() 공개 정적인 메소드

Returns whether a specified award ID exists
public static Exists ( string AwardId ) : bool
AwardId string The Award ID
리턴 bool
        public MedalOrRankCondition(List <string> Params)
        {
            if (Params[0] == "has_medal")
            {
                if (!Award.Exists(Params[1]) && Params[1] != "6666666" && Params[1] != "6666667")
                {
                    throw new Exception("[MedalCondition] Award ID: " + Params[1] + " Does not exist!");
                }
            }

            this.Params = Params;
        }