aboutsummaryrefslogtreecommitdiff
path: root/azalea-core/src
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2022-05-01 23:45:28 -0500
committermat <github@matdoes.dev>2022-05-01 23:45:28 -0500
commit34058b25283947137216964462a1370d08010066 (patch)
treea5c8fa182b77398008bb6ffc67cad61ab7b7e5ca /azalea-core/src
parentdedcd0de8f017a00645b31cfdc1819a4e8da0850 (diff)
downloadazalea-drasl-34058b25283947137216964462a1370d08010066.tar.xz
Remove some resolved todo comments
Diffstat (limited to 'azalea-core/src')
-rw-r--r--azalea-core/src/slot.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/azalea-core/src/slot.rs b/azalea-core/src/slot.rs
index 2e581586..5e42f558 100644
--- a/azalea-core/src/slot.rs
+++ b/azalea-core/src/slot.rs
@@ -1,4 +1,4 @@
-// TODO: have an azalea-inventory crate and put this there
+// TODO: have an azalea-inventory or azalea-container crate and put this there
#[derive(Debug, Clone)]
pub enum Slot {
@@ -9,8 +9,6 @@ pub enum Slot {
#[derive(Debug, Clone)]
pub struct SlotData {
pub id: i32,
- // TODO: is this really a u8? is it a i8? is it a varint?
- // wiki.vg says it's a "byte"
pub count: u8,
pub nbt: azalea_nbt::Tag,
}