diff options
author | Florian Jung <flo@windfisch.org> | 2015-08-25 00:04:10 +0200 |
---|---|---|
committer | Florian Jung <flo@windfisch.org> | 2015-08-25 00:04:10 +0200 |
commit | 9a00624c68cc0606cdd2be5eaf4f5c5658edb02a (patch) | |
tree | 99d338c6904bed1b978fcf21282487c2d96d2663 /strategy.py | |
parent | 8b2cfb34d5bc23d53aaf3676f75a227c8ad51506 (diff) |
fix stupid typo
Diffstat (limited to 'strategy.py')
-rw-r--r-- | strategy.py | 2 |
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 |