diff --git a/Content/Items/Boss/DuneWyrm/DuneWyrmTreasureBag.cs b/Content/Items/Boss/DuneWyrm/DuneWyrmTreasureBag.cs index a6d1795..8de42f1 100644 --- a/Content/Items/Boss/DuneWyrm/DuneWyrmTreasureBag.cs +++ b/Content/Items/Boss/DuneWyrm/DuneWyrmTreasureBag.cs @@ -2,6 +2,7 @@ using Decimation.Content.Items.Misc.Souls; using Decimation.Content.Items.Placeable.DuneWyrm; using Decimation.Content.Items.Tools; using Decimation.Content.Items.Vanity.DuneWyrm; +using Decimation.Content.Items.Weapons.DuneWyrm; using Decimation.Lib.Items; using Terraria; using Terraria.ID; @@ -18,10 +19,24 @@ namespace Decimation.Content.Items.Boss.DuneWyrm player.QuickSpawnItem(ModContent.ItemType(), Main.rand.Next(20, 35)); player.QuickSpawnItem(ItemID.FossilOre, Main.rand.Next(10, 15)); player.QuickSpawnItem(ModContent.ItemType()); + if (Main.rand.NextBool(7)) player.QuickSpawnItem(ModContent.ItemType()); if (Main.rand.NextBool(13)) player.QuickSpawnItem(ModContent.ItemType()); + + switch (Main.rand.Next(3)) + { + case 0: + player.QuickSpawnItem(ModContent.ItemType()); + break; + case 1: + player.QuickSpawnItem(ModContent.ItemType()); + break; + case 2: + player.QuickSpawnItem(ModContent.ItemType()); + break; + } } } } \ No newline at end of file