From 9a00624c68cc0606cdd2be5eaf4f5c5658edb02a Mon Sep 17 00:00:00 2001 From: Florian Jung Date: Tue, 25 Aug 2015 00:04:10 +0200 Subject: fix stupid typo --- strategy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.1