From 2fec481a8241cfb9f1fa35c67da82c73a5af4acf Mon Sep 17 00:00:00 2001 From: Mario Kilies Date: Tue, 25 Jan 2011 20:13:29 +0100 Subject: RNG is initialized with time() again. --- src/game.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/game.c') diff --git a/src/game.c b/src/game.c index 62d1155..1390e43 100644 --- a/src/game.c +++ b/src/game.c @@ -108,8 +108,8 @@ void start_game(const bool servermode, const char* addr, const char* port) socket_list_t client_socks; uint8_t num_players = 2; - //srand(time(0)); // Initialize RNG - srand(1337); + srand(time(0)); // Initialize RNG + //srand(1337); // Constant debug RNG seed data_store_t *data = data_store(); -- cgit v1.2.3