diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-03-18 07:22:14 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-03-18 07:22:14 +0100 |
commit | 701eee31bff9416a9822ca54388a9ec8fabd09a4 (patch) | |
tree | 0ab78b6c7b32b6d3bedf1960aefa20226d43bfe8 /src/protocol.rs | |
parent | 193cb6670addf16bb18b76a1badc00f648150d0b (diff) |
fix: fix champion selection
Diffstat (limited to 'src/protocol.rs')
-rw-r--r-- | src/protocol.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol.rs b/src/protocol.rs index f8f1f62..8a83260 100644 --- a/src/protocol.rs +++ b/src/protocol.rs @@ -57,7 +57,7 @@ protocolize! { pub fn protocol() -> MyProtocol { let mut protocol = MyProtocol::default(); protocol.add_channel::<Channel1>(ChannelSettings { - mode: ChannelMode::UnorderedUnreliable, + mode: ChannelMode::UnorderedReliable(Default::default()), ..Default::default() }); protocol |