Skip to content

Commit

Permalink
fixed up code and changed icon
Browse files Browse the repository at this point in the history
  • Loading branch information
valkyrienyanko committed Nov 12, 2018
1 parent 6e08579 commit 8c7eebf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Tiles/Platform.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

}
Expand All @@ -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);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion build.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
author = valkyrienyanko
version = 0.1
version = 1.0
displayName = Platform Helper
homepage = https://discord.gg/thMupbv
Binary file modified icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 8c7eebf

Please sign in to comment.