1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-04-22 07:27:44 +00:00

Fix size of WeatherChange packet

This commit is contained in:
Joshua Goins 2025-03-21 19:58:48 -04:00
parent 0900d0b94e
commit b3a22ebdce

View file

@ -4,6 +4,6 @@ use binrw::binrw;
#[derive(Debug, Clone, Copy, Default)] #[derive(Debug, Clone, Copy, Default)]
pub struct WeatherChange { pub struct WeatherChange {
pub weather_id: u16, pub weather_id: u16,
#[brw(pad_before = 3)] #[brw(pad_before = 2)]
pub transistion_time: f32, pub transistion_time: f32,
} }