diff options
| author | mat <github@matdoes.dev> | 2022-09-07 22:12:16 -0500 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-09-07 22:12:16 -0500 |
| commit | 98000f800f31c85c7bbf121b116047137b503c49 (patch) | |
| tree | 720e21b59e1b10eed6e66b6ace06714407d68f54 /azalea-chat/src | |
| parent | ec316e02cd7d86829614ec1c0b7e3edadad103c5 (diff) | |
| download | azalea-drasl-98000f800f31c85c7bbf121b116047137b503c49.tar.xz | |
why am i getting a varint error
Diffstat (limited to 'azalea-chat/src')
| -rwxr-xr-x | azalea-chat/src/component.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-chat/src/component.rs b/azalea-chat/src/component.rs index caf50b0a..6cf1ec09 100755 --- a/azalea-chat/src/component.rs +++ b/azalea-chat/src/component.rs @@ -182,7 +182,7 @@ impl<'de> Deserialize<'de> for Component { "keybind text components aren't yet supported", )); } else { - let nbt = if let Some(nbt) = json.get("nbt") { + let _nbt = if let Some(nbt) = json.get("nbt") { nbt } else { return Err(de::Error::custom( |
