Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
DropNothing.cs
Go to the documentation of this file.
2
4
6{
7 public List<IItemDropRuleChainAttempt> ChainedRules { get; private set; }
8
13
14 public bool CanDrop(DropAttemptInfo info)
15 {
16 return false;
17 }
18
20 {
22 result.State = ItemDropAttemptResultState.DoesntFillConditions;
23 return result;
24 }
25
30}
static void ReportDroprates(List< IItemDropRuleChainAttempt > ChainedRules, float personalDropRate, List< DropRateInfo > drops, DropRateInfoChainFeed ratesInfo)
Definition Chains.cs:85
List< IItemDropRuleChainAttempt > ChainedRules
Definition DropNothing.cs:7
ItemDropAttemptResult TryDroppingItem(DropAttemptInfo info)
void ReportDroprates(List< DropRateInfo > drops, DropRateInfoChainFeed ratesInfo)