From 6a6a9ff8f989896fa7af7132d50b116a07e6b44c Mon Sep 17 00:00:00 2001 From: arngo <27396817+arngo@users.noreply.github.com> Date: Sat, 27 May 2023 17:27:10 -0400 Subject: check enemy bullet-wall collisions as well --- src/bullet.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/bullet.c b/src/bullet.c index 89572dc..cfb12bf 100644 --- a/src/bullet.c +++ b/src/bullet.c @@ -164,4 +164,5 @@ void detect_bullet_wall_collisions(void) { rodeo_collision_2d_world_compare_other(&player_bullet_collision_world, get_wall_world(), bullet_wall_resolver); + rodeo_collision_2d_world_compare_other(&enemy_bullet_collision_world, get_wall_world(), bullet_wall_resolver); } -- cgit v1.2.3