diff --git a/Tiles/Platform.cs b/Tiles/Platform.cs index 12f3a8f..4926933 100644 --- a/Tiles/Platform.cs +++ b/Tiles/Platform.cs @@ -18,7 +18,7 @@ public override void PlaceInWorld(int i, int j, Item item) { heldItem.stack -= (amount - 1); for (int n = 1; n < amount; n++) { - WorldGen.PlaceTile(i + n, j, item.createTile, false, false, -1, item.placeStyle); + WorldGen.PlaceTile(i + n, j, item.createTile, style:item.placeStyle); } } @@ -27,7 +27,7 @@ public override void PlaceInWorld(int i, int j, Item item) { heldItem.stack -= (amount - 1); for (int n = 1; n < amount; n++) { - WorldGen.PlaceTile(i - n, j, item.createTile, false, false, -1, item.placeStyle); + WorldGen.PlaceTile(i - n, j, item.createTile, style:item.placeStyle); } } } diff --git a/build.txt b/build.txt index 5bbe9d3..951f77e 100644 --- a/build.txt +++ b/build.txt @@ -1,4 +1,4 @@ author = valkyrienyanko -version = 0.1 +version = 1.0 displayName = Platform Helper homepage = https://discord.gg/thMupbv \ No newline at end of file diff --git a/icon.png b/icon.png index 99a357a..60f4ba1 100644 Binary files a/icon.png and b/icon.png differ