diff options
Diffstat (limited to 'server/bot')
-rw-r--r-- | server/bot/src/algos/customer.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/server/bot/src/algos/customer.rs b/server/bot/src/algos/customer.rs index 2e0a45b4..716897f7 100644 --- a/server/bot/src/algos/customer.rs +++ b/server/bot/src/algos/customer.rs @@ -132,6 +132,11 @@ impl BotAlgo for Customer { *self = Customer::Exiting { path }; BotInput { extra: vec![ + PacketS::Communicate { + message: None, + timeout: Some(0.), + player: me, + }, PacketS::ApplyScore(Score { points: -1, demands_failed: 1, @@ -179,6 +184,11 @@ impl BotAlgo for Customer { BotInput { extra: vec![ PacketS::Communicate { + message: None, + timeout: Some(0.), + player: me, + }, + PacketS::Communicate { message: Some(Message::Effect("satisfied".to_string())), timeout: None, player: me, |