diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-13 19:06:52 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-13 19:06:52 +0200 |
commit | 5ab49aa46b6f1a9cd5196165009d2ee08b6b7a87 (patch) | |
tree | bbc3967b299ee2b272efcd83e3c0c4ed82ce7de6 /Canvas.cpp | |
parent | feaf272efad381414c6ee76c0cd4bf929e8087ae (diff) |
implement all tile behaviors
Diffstat (limited to 'Canvas.cpp')
-rw-r--r-- | Canvas.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } } |