Hey, I've been working on a mod of mine, "Weapuns and Other Shenanigans." I'm trying to make bunnies drop multiple carrots at once. Only, I don't know how to do that. Here's what little code I have.
How to make enemies drop multiple of the same item
public override void NPCLoot(NPC npc)
{
if(npc.type == NPCID.Bunny)
{
if (Main.rand.Next(74) == 0) //item rarity
{
Item.NewItem((int)npc.position.X,...
{
if(npc.type == NPCID.Bunny)
{
if (Main.rand.Next(74) == 0) //item rarity
{
Item.NewItem((int)npc.position.X,...
How to make enemies drop multiple of the same item