summaryrefslogtreecommitdiff
path: root/strategy.py
diff options
context:
space:
mode:
Diffstat (limited to 'strategy.py')
-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