diff options
author | Juan J. Martinez <jjm@usebox.net> | 2023-07-07 07:21:18 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2023-07-07 07:21:18 +0100 |
commit | 55a4aed50112c06991d1dbb6199248bb4083c6a9 (patch) | |
tree | a5f4e06ddcd0944de825003da5d817c7de3b6a25 /src/old.c | |
parent | bbe888fc60ba967685be3350509e064277df31f0 (diff) | |
download | gold-mine-run-55a4aed50112c06991d1dbb6199248bb4083c6a9.tar.gz gold-mine-run-55a4aed50112c06991d1dbb6199248bb4083c6a9.zip |
Prevent Mr Bones to get stuck turning when can't reach the player
Diffstat (limited to 'src/old.c')
-rw-r--r-- | src/old.c | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -13,8 +13,6 @@ #define FRAME_JUMPING 1 #define WALK_CYCLE_FRAMES 4 -#define JUMP_DELAY 2 - static const Rect frames[2 * 4] = { /* right */ @@ -77,7 +75,7 @@ void old_update(Entity *e) { e->gravity = GRAVITY_OFF; e->frame = FRAME_STANDING; - e->flags = rand() % (JUMP_DELAY * 2); + e->flags = rand() % (ENEMY_JUMP_DELAY * 2); break; } e->y++; @@ -110,7 +108,7 @@ void old_update(Entity *e) else e->x++; - if (e->flags > JUMP_DELAY + if (e->flags > ENEMY_JUMP_DELAY && map_is_blocked(e->x + 7, e->y - 1) && !map_is_blocked(e->x + 7, e->y - 9)) { @@ -130,7 +128,7 @@ void old_update(Entity *e) else e->x--; - if (e->flags > JUMP_DELAY + if (e->flags > ENEMY_JUMP_DELAY && map_is_blocked(e->x + 7, e->y - 1) && !map_is_blocked(e->x + 7, e->y - 9)) { |