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

◆ TryDroppingItem()

ItemDropAttemptResult Terraria.GameContent.ItemDropRules.DropNothing.TryDroppingItem ( DropAttemptInfo info)
inline

Implements Terraria.GameContent.ItemDropRules.IItemDropRule.

Definition at line 19 of file DropNothing.cs.

20 {
21 ItemDropAttemptResult result = default(ItemDropAttemptResult);
22 result.State = ItemDropAttemptResultState.DoesntFillConditions;
23 return result;
24 }