diff options
| -rw-r--r-- | server/bot/src/algos/customer.rs | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/server/bot/src/algos/customer.rs b/server/bot/src/algos/customer.rs index 0fc7a42b..556f5ce5 100644 --- a/server/bot/src/algos/customer.rs +++ b/server/bot/src/algos/customer.rs @@ -108,7 +108,7 @@ impl BotAlgo for Customer {                      }                  } else {                      BotInput { -                        direction: path.next_direction(pos), +                        direction: path.next_direction(pos) * 0.5,                          ..Default::default()                      }                  } @@ -260,7 +260,7 @@ impl BotAlgo for Customer {                      }                  } else {                      BotInput { -                        direction: path.next_direction(pos), +                        direction: path.next_direction(pos) * 0.5,                          ..Default::default()                      }                  } | 
