diff options
-rw-r--r-- | src/game.c | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -249,12 +249,8 @@ mf_game(long seed, int size, int fow, int reveal, int enemies, } for (i = 1; i < 1 + enemies; ++i) { for (j = i + 1; j < 1 + enemies; ++j) { - if (mf_char_collision(chars[i], - chars[j], - SDL_TRUE) - == SDL_TRUE) { - fr = 1; - } + mf_char_collision(chars[i], chars[j], + SDL_TRUE); } } mf_char_get_vector(chars[0], &game.player_cx, |