diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-25 13:02:38 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-25 13:02:38 +0200 |
commit | 8cf389aaf748c77aecda0b3a3773c45053b0f231 (patch) | |
tree | 91268879710d6ae2868e548d3f44c664a19443d8 /StepTileBehavior.cpp | |
parent | da669db4f083194bc78358041c5d9929e103ac9f (diff) |
implement all ALGA features
Diffstat (limited to 'StepTileBehavior.cpp')
-rw-r--r-- | StepTileBehavior.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/StepTileBehavior.cpp b/StepTileBehavior.cpp index ff1217e..859845d 100644 --- a/StepTileBehavior.cpp +++ b/StepTileBehavior.cpp @@ -5,7 +5,7 @@ using namespace std; void StepTileBehavior::update(Tile & tile) { - if (this->interactions < 3) return; + if (this->interactions < 3) return; tile.set_type(DeleteArtistTileBehavior::type); } |