From 58e37a1be5b257def98b5c86de84c068e21512df Mon Sep 17 00:00:00 2001 From: Peter Ward Date: Sun, 18 May 2014 10:31:48 +1000 Subject: things --- capturer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'capturer.py') diff --git a/capturer.py b/capturer.py index 92f85b7..7a698ee 100644 --- a/capturer.py +++ b/capturer.py @@ -37,7 +37,7 @@ class CaptureSpawns(object): if random.random() < self.variance: result = random.choice('ULDR') elif predecessors[y][x]: - result = predecessors[y][x] + result = random.choice(predecessors[y][x]) elif state.allegiances.get((x, y)) != whoami: result = 'P' else: -- cgit v1.2.3