Remove Debug Messages

pull/5/head
Wyatt Herkamp 2 years ago
parent 9d03b8ae51
commit 89002a908f

@ -19,9 +19,7 @@ pub fn simple_test() {
let protocol1 = protocol.get_protocol();
match protocol1 {
Ok(data) => {
for x in data.play.to_server.types {
println!("{:#?}", x);
}
}
Err(error) => {
panic!("Minecraft Version {} could not be parsed into a Protocol object: {}", arc.minecraft_version, error);

@ -108,7 +108,6 @@ impl<'de> Deserialize<'de> for PacketTypes {
}
} else if let Value::Array( array) = value {
let value1 = Value::Array(vec![Value::String(key.clone()), Value::Array(array)]);
println!("{:#?}", value1);
let inner_type = types::build_inner_type(value1);
packets.push(Packet {
name: key,

Loading…
Cancel
Save