diff options
Diffstat (limited to 'server/src/state.rs')
-rw-r--r-- | server/src/state.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/src/state.rs b/server/src/state.rs index 54beb3f7..f6304db5 100644 --- a/server/src/state.rs +++ b/server/src/state.rs @@ -148,7 +148,7 @@ impl State { match &packet { PacketS::Communicate { message: Some(Message::Text(text)), - persist: false, + timeout: None, player, } if let Some(command) = text.strip_prefix("/") => { match self.handle_command_parse(*player, command).await { @@ -288,7 +288,7 @@ impl State { .send(PacketC::Communicate { player, message: Some(Message::Effect(name)), - persist: false, + timeout: None, }) .ok(); } @@ -302,7 +302,7 @@ impl State { .send(PacketC::Communicate { player, message: Some(Message::Item(item)), - persist: false, + timeout: None, }) .ok(); } |