From 836b503fc4eb61e690fb0634ed801371b0c8828b Mon Sep 17 00:00:00 2001 From: Big Duckie Date: Tue, 5 Jul 2022 22:31:28 -0600 Subject: [PATCH] Cleaned up tile code. --- Tiles/RainbowStation.cs | 2 +- Tiles/ReinforcedWorkBench.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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()); } }