aboutsummaryrefslogtreecommitdiff
path: root/Canvas.cpp
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-13 19:06:52 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-13 19:06:52 +0200
commit5ab49aa46b6f1a9cd5196165009d2ee08b6b7a87 (patch)
treebbc3967b299ee2b272efcd83e3c0c4ed82ce7de6 /Canvas.cpp
parentfeaf272efad381414c6ee76c0cd4bf929e8087ae (diff)
implement all tile behaviors
Diffstat (limited to 'Canvas.cpp')
-rw-r--r--Canvas.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Canvas.cpp b/Canvas.cpp
index d4b4670..821be0c 100644
--- a/Canvas.cpp
+++ b/Canvas.cpp
@@ -80,7 +80,7 @@ void Canvas::update_steps() {
if (artist.step == false) continue;
artist.step = false;
- this->get_tile(artist.data.x, artist.data.y).step();
+ this->get_tile(artist.data.x, artist.data.y).step(artist);
}
}