From b496469aed19aa1bb104f9d22b745c646630ce49 Mon Sep 17 00:00:00 2001 From: "Andrey A. Chernov" Date: Wed, 24 Sep 1997 23:15:00 +0000 Subject: [PATCH] Oops, miss one rand() lcation... --- games/atc/update.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/games/atc/update.c b/games/atc/update.c index 79bc60143a35..5a83bbc16b68 100644 --- a/games/atc/update.c +++ b/games/atc/update.c @@ -208,7 +208,7 @@ update() * Otherwise, prop jobs show up *on* entrance. Remember that * we don't update props on odd updates. */ - if ((rand() % sp->newplane_time) == 0) + if ((random() % sp->newplane_time) == 0) addplane(); #ifdef BSD