Merge remote-tracking branch 'upstream/master'

This commit is contained in:
Enno Rehling 2018-09-10 18:00:27 +02:00
commit 419ff9b514
2 changed files with 2 additions and 2 deletions

View File

@ -5,6 +5,6 @@ import sys
def new_version(ver): def new_version(ver):
os.system("git tag -f v%s" % ver) os.system("git tag -f v%s" % ver)
os.system("git push --tags") os.system("git push --tags -f")
new_version(sys.argv[1]) new_version(sys.argv[1])

View File

@ -876,7 +876,7 @@ void spawn_dragons(void)
region *r; region *r;
faction *monsters = get_or_create_monsters(); faction *monsters = get_or_create_monsters();
int minage = config_get_int("monsters.spawn.min_age", 100); int minage = config_get_int("monsters.spawn.min_age", 100);
int spawn_chance = config_get_int("monsters.spawn.chance", 100); int spawn_chance = config_get_int("monsters.spawn.chance", 100) * 100;
if (spawn_chance <= 0) { if (spawn_chance <= 0) {
/* monster spawning disabled */ /* monster spawning disabled */