diff --git a/src/wolfgame.py b/src/wolfgame.py index c30bb5a..ba13f5e 100644 --- a/src/wolfgame.py +++ b/src/wolfgame.py @@ -4453,7 +4453,7 @@ def start(cli, nick, chan, forced = False, restart = ""): possiblegamemodes += [gamemode] * num numvotes += num if len(villagers) - numvotes > 0: - possiblegamemodes += [None] * ((len(villagers) - numvotes) / 2) + possiblegamemodes += [None] * ((len(villagers) - numvotes) // 2) # check if we go with a voted mode or a random mode gamemode = random.choice(possiblegamemodes) if gamemode is None: