fix flt/int compilation bug.

This commit is contained in:
Enno Rehling 2016-12-23 23:58:24 +01:00 committed by Enno Rehling
parent f297d89958
commit 8c045d7a78
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ static double random_move_chance(void) {
static int rule;
static int config;
if (config_changed(&config)) {
rule = config_get_flt("rules.monsters.random_move_percent", MOVE_PERCENT);
rule = config_get_int("rules.monsters.random_move_percent", MOVE_PERCENT);
}
return rule * 0.01;
}