diff options
author | Kjetil Orbekk <kj@orbekk.com> | 2022-12-03 13:49:54 -0500 |
---|---|---|
committer | Kjetil Orbekk <kj@orbekk.com> | 2022-12-03 13:49:54 -0500 |
commit | e6933ac48848b598f870ff5a9d96a0336728620b (patch) | |
tree | 3c6b9e9c9a6100b1400dd1a02fc07fbb5803d7b7 /protocol/src/simple_bots.rs | |
parent | 03ad7a9728c22a8016ade56f79049e32db5941ac (diff) |
Display player turn in webapp
Diffstat (limited to 'protocol/src/simple_bots.rs')
-rw-r--r-- | protocol/src/simple_bots.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocol/src/simple_bots.rs b/protocol/src/simple_bots.rs index ffa1be2..7997418 100644 --- a/protocol/src/simple_bots.rs +++ b/protocol/src/simple_bots.rs @@ -6,7 +6,7 @@ struct AlwaysPassBiddingBot {} #[async_trait] impl BiddingBot for AlwaysPassBiddingBot { - async fn bid(&self, bidding: &BiddingStatePlayerView) -> Bid { + async fn bid(&self, _bidding: &BiddingStatePlayerView) -> Bid { Bid::Pass } } |