From 07fed441f31e80702626f9322953c125898a10cc Mon Sep 17 00:00:00 2001 From: ice_iix Date: Sun, 28 Jun 2020 18:28:09 -0700 Subject: [PATCH] protocol: fix redundant_field_names --- protocol/src/protocol/packet.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocol/src/protocol/packet.rs b/protocol/src/protocol/packet.rs index 39cddc8..365e38f 100644 --- a/protocol/src/protocol/packet.rs +++ b/protocol/src/protocol/packet.rs @@ -2569,7 +2569,7 @@ impl Serializable for PlayerInfoData { } }, }), - 4 => m.players.push(PlayerDetail::Remove { uuid: uuid }), + 4 => m.players.push(PlayerDetail::Remove { uuid }), _ => panic!(), } }