diff options
author | Paweł Redman <pawel.redman@gmail.com> | 2018-11-12 21:32:45 +0100 |
---|---|---|
committer | Paweł Redman <pawel.redman@gmail.com> | 2018-11-16 00:08:22 +0100 |
commit | b94eb84d5dfed71925984be6a0373b132cf1106d (patch) | |
tree | 9528b5ac5355532d55f148006d159d4235c11b0a /src/game | |
parent | b80907f12846cbbd31c24544ba350fcfd4f2f04d (diff) |
Init handicap factors to 1.
Diffstat (limited to 'src/game')
-rw-r--r-- | src/game/g_main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/game/g_main.c b/src/game/g_main.c index 9316f06..17798fb 100644 --- a/src/game/g_main.c +++ b/src/game/g_main.c @@ -1016,6 +1016,8 @@ void G_InitGame( int levelTime, int randomSeed, int restart ) } level.antistackNextCheck = g_antistackTimeThreshold.integer * 1000; + level.alienHandicap = 1.0f; + level.humanHandicap = 1.0f; } /* |