Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ OnFailedConditions()

static IItemDropRule Terraria.GameContent.ItemDropRules.Chains.OnFailedConditions ( this IItemDropRule rule,
IItemDropRule ruleToChain,
bool hideLootReport = false )
inlinestatic

Definition at line 105 of file Chains.cs.

106 {
107 rule.ChainedRules.Add(new TryIfDoesntFillConditions(ruleToChain, hideLootReport));
108 return ruleToChain;
109 }
void Add(TKey key, TValue value)

References System.Collections.Generic.Dictionary< TKey, TValue >.Add().