|
@@ -2426,6 +2426,12 @@ class PlanetUpScript(object):
|
|
|
_, _, holds = line.partition('[')
|
|
|
holds, _, _ = holds.partition(']')
|
|
|
self.fetch_amount = int(holds)
|
|
|
+ if line.startswith('One turn deducted, '):
|
|
|
+ parts = line.split()
|
|
|
+ turns = int(parts[3])
|
|
|
+ if turns < 200:
|
|
|
+ self.queue_game.put(self.nl + Boxes.alert("LOW TURNS.") + self.nl)
|
|
|
+ self.deactivate()
|
|
|
elif self.state == 9:
|
|
|
if re.match(r'You have \d turns left.', line):
|
|
|
parts = line.split()
|