From 999dde1931060135fe658e339dfeb82e4073f3a6 Mon Sep 17 00:00:00 2001 From: Thinkofdeath Date: Fri, 18 Sep 2015 22:02:08 +0100 Subject: [PATCH] Base of ui system --- protocol/src/protocol/packet.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/protocol/src/protocol/packet.rs b/protocol/src/protocol/packet.rs index fad09f5..9db8a03 100644 --- a/protocol/src/protocol/packet.rs +++ b/protocol/src/protocol/packet.rs @@ -998,7 +998,11 @@ impl Serializable for MapIcon { impl Default for MapIcon { fn default() -> Self { - MapIcon { .. Default::default() } + MapIcon { + direction_type: 0, + x: 0, + z: 0, + } } }