GetDefaultAwardCondition() public static method

Returns the original (vanilla) condition list to earn the specified award
public static GetDefaultAwardCondition ( string Id ) : Condition
Id string The award's ID
return Condition
Beispiel #1
0
 /// <summary>
 /// Restores the condition of this award to the default (vanilla) state
 /// </summary>
 public void RestoreDefaultConditions()
 {
     Conditions = AwardCache.GetDefaultAwardCondition(this.Id.ToString());
 }