protocol: pub fields in struct Stack (#344)

This commit is contained in:
Kezi 2020-06-27 23:16:25 +02:00 committed by GitHub
parent dde28b48b7
commit e0d5d205c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -19,10 +19,10 @@ use std::io;
#[derive(Debug)]
pub struct Stack {
id: isize,
count: isize,
damage: Option<isize>,
tag: Option<nbt::NamedTag>,
pub id: isize,
pub count: isize,
pub damage: Option<isize>,
pub tag: Option<nbt::NamedTag>,
}
impl Default for Stack {