Skip to content

Commit

Permalink
Fix bug where buildings that had no main shape were not rendered at all
Browse files Browse the repository at this point in the history
  • Loading branch information
Rampastring committed Sep 28, 2024
1 parent 258f694 commit a5ecc70
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/TSMapEditor/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace TSMapEditor
{
public static class Constants
{
public const string ReleaseVersion = "1.2.3";
public const string ReleaseVersion = "1.2.4";

public static int CellSizeX = 48;
public static int CellSizeY = 24;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public void Draw(T gameObject, bool checkInCamera)
{
DrawText(gameObject, false);
}
else if (frame != null)
else
{
Render(gameObject, drawPoint, drawParams);
}
Expand Down

0 comments on commit a5ecc70

Please sign in to comment.