From 13ef68ec8beb98b687a6435033a5a90196c4198b Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Tue, 2 Mar 2021 23:28:47 +0300 Subject: Some balancing. --- src/game.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game.c b/src/game.c index 0ab96d6..c3a81d4 100644 --- a/src/game.c +++ b/src/game.c @@ -404,9 +404,9 @@ static void step(int d) b->txrrow = 7; b->txrcol = 2 + rand() % 2; b->rate = 75 + (rand() % 50 - 25); - b->yvel = rand() % 100 - 50; + b->yvel = rand() % 50 - 25; b->yvel = b->yvel < 0 ? b->yvel - 125 : b->yvel + 125; - b->xvel = rand() % 100 - 50; + b->xvel = rand() % 50 - 25; b->xvel = b->yvel < 0 ? b->yvel - 125 : b->yvel + 125; Mix_PlayChannel(-1, tthadouken, 0); lenin_until_hadouken = 3; -- cgit v1.2.3