summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Jung <flo@windfisch.org>2015-08-25 00:04:10 +0200
committerFlorian Jung <flo@windfisch.org>2015-08-25 00:04:10 +0200
commit9a00624c68cc0606cdd2be5eaf4f5c5658edb02a (patch)
tree99d338c6904bed1b978fcf21282487c2d96d2663
parent8b2cfb34d5bc23d53aaf3676f75a227c8ad51506 (diff)
fix stupid typo
-rw-r--r--strategy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/strategy.py b/strategy.py
index 3bf7739..a7e553e 100644
--- a/strategy.py
+++ b/strategy.py
@@ -121,7 +121,7 @@ class Strategy:
if dist_to_friend < 20 or my_largest.mass < 60:
if self.do_approach_friends: print("not approaching friends")
self.do_approach_friends = False
- elif dist_to_friend > 200 and my_largest.mass > 60 * 1*16:
+ elif dist_to_friend > 200 and my_largest.mass > 60 + 1*16:
if not self.do_approach_friends: print("approaching friends")
self.do_approach_friends = True