Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DavideRei committed Oct 2, 2024
1 parent 1560b83 commit 136e5b5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions CentrED/Tools/BaseTool.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public abstract class BaseTool : Tool
protected static int _chance = 100;
protected bool _pressed;
protected bool _areaMode;
protected bool _topTilesOnly;
protected bool _topTilesOnly = true;
private TileObject? _areaStartTile;

internal override void Draw()
Expand All @@ -32,7 +32,6 @@ public sealed override void OnKeyPressed(Keys key)
if (key == Keys.LeftControl)
{
_areaMode = true;
_topTilesOnly = true;
}
if (key == Keys.LeftShift)
{
Expand Down

0 comments on commit 136e5b5

Please sign in to comment.