1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-04-21 23:17:45 +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)]
pub struct WeatherChange {
pub weather_id: u16,
#[brw(pad_before = 3)]
#[brw(pad_before = 2)]
pub transistion_time: f32,
}