diff options
author | Florian Jung <flo@windfisch.org> | 2015-08-11 14:55:13 +0200 |
---|---|---|
committer | Florian Jung <flo@windfisch.org> | 2015-08-11 14:55:13 +0200 |
commit | f733c96105e41b78d805f2375595074caa929855 (patch) | |
tree | 9e1b4382ac0ebe10f979194b2461425b91188b5b | |
parent | 8878a33c6cd954e995782fc87f501227ab4bac4d (diff) |
hopefully fix virus avoidance
-rw-r--r-- | main.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -56,7 +56,7 @@ while True: relpos = ((cell.pos[0]-c.player.center[0]),(cell.pos[1]-c.player.center[1])) dist = math.sqrt(relpos[0]**2+relpos[1]**2) - if (not cell.is_virus and dist < 500+2*cell.size and cell.mass > 1.25 * my_smallest) or (cell.is_virus and dist < cell.size and cell.mass < my_largest): + if (not cell.is_virus and dist < 500+2*cell.size and cell.mass > 1.25 * my_smallest) or (cell.is_virus and dist < my_largest and cell.mass < my_largest): angle = math.atan2(relpos[1],relpos[0]) corridor_width = 2 * math.asin(cell.size / dist) forbidden_intervals += canonicalize_angle_interval((angle-corridor_width, angle+corridor_width)) |