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

◆ RegisterToMultipleNPCsNotRemixSeed()

IItemDropRule Terraria.GameContent.ItemDropRules.ItemDropDatabase.RegisterToMultipleNPCsNotRemixSeed ( IItemDropRule entry,
params int[] npcNetIds )
inline

Definition at line 92 of file ItemDropDatabase.cs.

93 {
94 for (int i = 0; i < npcNetIds.Length; i++)
95 {
96 RegisterToNPC(npcNetIds[i], new LeadingConditionRule(new Conditions.NotRemixSeed())).OnSuccess(entry);
97 }
98 return entry;
99 }
IItemDropRule RegisterToNPC(int type, IItemDropRule entry)

References Terraria.GameContent.ItemDropRules.ItemDropDatabase.RegisterToNPC().

Referenced by Terraria.GameContent.ItemDropRules.ItemDropDatabase.RegisterHardmodeDungeonDrops().