diff options
Diffstat (limited to 'src/game.cpp')
-rw-r--r-- | src/game.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game.cpp b/src/game.cpp index 2af7736..59b8ad9 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -56,7 +56,7 @@ void state_t::tick(void) } if (human.stalin < -4.0f) - human.stalin = 2.0f; + human.stalin = (float)rand() / RAND_MAX * 3.0f; } } |