diff options
| author | Mario Kilies <MarioKilies@GMX.net> | 2011-01-25 20:13:29 +0100 |
|---|---|---|
| committer | Mario Kilies <MarioKilies@GMX.net> | 2011-01-25 20:13:29 +0100 |
| commit | 2fec481a8241cfb9f1fa35c67da82c73a5af4acf (patch) | |
| tree | 28765ad4ce6429cd6850496233025bbb49c6d52e /src | |
| parent | a84506bf127b525bae9108edc5f15d9d3bd52ed4 (diff) | |
RNG is initialized with time() again.
Diffstat (limited to 'src')
| -rw-r--r-- | src/game.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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(); |
