From fbfc706f7b6b1dc011d9d472c7742cf7f00e3299 Mon Sep 17 00:00:00 2001 From: AnthonyDuong1 <100894923+AnthonyDuong1@users.noreply.github.com> Date: Tue, 30 Jun 2026 13:18:01 -0400 Subject: [PATCH] fix: air supply under water (#2317) --- pumpkin/src/entity/breath.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pumpkin/src/entity/breath.rs b/pumpkin/src/entity/breath.rs index 19faa6c24..e3047a4f6 100644 --- a/pumpkin/src/entity/breath.rs +++ b/pumpkin/src/entity/breath.rs @@ -154,7 +154,7 @@ impl BreathManager { player.get_entity().send_meta_data(&[Metadata::new( TrackedData::AIR_SUPPLY_ID, - MetaDataType::INTEGER, + MetaDataType::INT, VarInt(air), )]); }