summaryrefslogtreecommitdiff
path: root/src/object/smokeParticle.c
diff options
context:
space:
mode:
authorTheo <65437533+notyourav@users.noreply.github.com>2023-12-31 17:36:15 -0800
committerGitHub <noreply@github.com>2023-12-31 17:36:15 -0800
commit48fdf9d8277d2bd2e071cb30fc6284c58645e343 (patch)
treef5364bb3cdb41fe41512d767c1de44f73963e498 /src/object/smokeParticle.c
parent72c27b5393372081f558a4c610bab7d5c88d3e89 (diff)
parent37ac9cb0fb2d9ccb64286bab2cdf648e6f2541c5 (diff)
Merge pull request #684 from notyourav/tiles
Tiles documentation
Diffstat (limited to 'src/object/smokeParticle.c')
-rw-r--r--src/object/smokeParticle.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/object/smokeParticle.c b/src/object/smokeParticle.c
index ab50e2b8..4c24717a 100644
--- a/src/object/smokeParticle.c
+++ b/src/object/smokeParticle.c
@@ -74,14 +74,14 @@ void sub_080878CC(Entity* this) {
switch (GetTileType(pos, layer)) {
case 0x368:
case 0x367:
- sub_08008796(this, 3, x + itX, y + itY);
+ DoTileInteraction(this, 3, x + itX, y + itY);
break;
default:
- SetTile(0x4022, pos, layer);
+ SetBottomTile(0x4022, pos, layer);
break;
}
} else {
- sub_08008796(this, 3, x + itX, y + itY);
+ DoTileInteraction(this, 3, x + itX, y + itY);
}
}
}