Skip to content

Commit

Permalink
fix incorrect EntityDataValue::Long
Browse files Browse the repository at this point in the history
  • Loading branch information
mat-1 committed Dec 11, 2024
1 parent 097a620 commit f4a1869
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion azalea-entity/src/data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ impl AzaleaWrite for EntityMetadataItems {
pub enum EntityDataValue {
Byte(u8),
Int(#[var] i32),
Long(i64),
Long(#[var] i64),
Float(f32),
String(String),
FormattedText(FormattedText),
Expand Down

0 comments on commit f4a1869

Please sign in to comment.