Fix missing line end.

This commit is contained in:
Big Duckie
2022-07-05 22:32:06 -06:00
parent 3b6ac301c4
commit 2b34d060c5
@@ -60,7 +60,7 @@ public class Graffiti : ModItem
CreateRecipe() CreateRecipe()
.AddIngredient(ModContent.ItemType<GoldenPulse>()) .AddIngredient(ModContent.ItemType<GoldenPulse>())
.AddIngredient(ModContent.ItemType<Bars.RainbowChunk>(), 10) .AddIngredient(ModContent.ItemType<Bars.RainbowChunk>(), 10)
.AddTile(ModContent.TileType<global::FabusMod.Tiles.RainbowStation>()); .AddTile(ModContent.TileType<global::FabusMod.Tiles.RainbowStation>())
.Register(); .Register();
} }
} }