diff options
Diffstat (limited to 'pixel-client/src/game.rs')
-rw-r--r-- | pixel-client/src/game.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/pixel-client/src/game.rs b/pixel-client/src/game.rs index 780cde42..07c1fc9b 100644 --- a/pixel-client/src/game.rs +++ b/pixel-client/src/game.rs @@ -359,7 +359,7 @@ impl Game { recipe: RecipeIndex(0), }); } - PacketC::ServerMessage { text: _ } => { + PacketC::ServerMessage { .. } => { // TODO } PacketC::Score(score) => { @@ -377,9 +377,6 @@ impl Game { player.message_persist = message.map(|m| (m, timeout)); } } - PacketC::Error { message } => { - warn!("server error: {message:?}") - } _ => (), } } |