diff options
Diffstat (limited to 'server/src/entity/customers.rs')
-rw-r--r-- | server/src/entity/customers.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/entity/customers.rs b/server/src/entity/customers.rs index bb423e58..a9ddb6f1 100644 --- a/server/src/entity/customers.rs +++ b/server/src/entity/customers.rs @@ -54,7 +54,7 @@ impl Entity for Customers { self.spawn_cooldown = 10. + random::<f32>() * 10.; let bot = BotDriver::new( "".to_string(), - random::<u16>() as i32, + -1 - random::<u16>() as i32, PlayerClass::Customer, Customer::default(), ); |