diff --git a/Tiles/RainbowStation.cs b/Tiles/RainbowStation.cs index 87e503e..4d77f1a 100644 --- a/Tiles/RainbowStation.cs +++ b/Tiles/RainbowStation.cs @@ -41,6 +41,6 @@ public class RainbowStation : ModTile public override void KillMultiTile(int i, int j, int frameX, int frameY) { - Item.NewItem(new EntitySource_Misc(""), i * 16, j * 16, 32, 16, ModContent.ItemType(), 1, false, 0, false, false); + Item.NewItem(new EntitySource_Misc(""), i * 16, j * 16, 32, 16, ModContent.ItemType()); } } diff --git a/Tiles/ReinforcedWorkBench.cs b/Tiles/ReinforcedWorkBench.cs index bffbe6e..062dc7b 100644 --- a/Tiles/ReinforcedWorkBench.cs +++ b/Tiles/ReinforcedWorkBench.cs @@ -26,6 +26,6 @@ public class ReinforcedWorkBench : ModTile public override void KillMultiTile(int i, int j, int frameX, int frameY) { - Item.NewItem(new EntitySource_Misc(""), i * 16, j * 16, 32, 16, ModContent.ItemType(), 1, false, 0, false, false); + Item.NewItem(new EntitySource_Misc(""), i * 16, j * 16, 32, 16, ModContent.ItemType()); } }