From b3a22ebdcea038b01494dcdbe8fc5b56a6eb72cf Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Fri, 21 Mar 2025 19:58:48 -0400 Subject: [PATCH] Fix size of WeatherChange packet --- src/world/ipc/weather_change.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/world/ipc/weather_change.rs b/src/world/ipc/weather_change.rs index f0bbec8..ee81b60 100644 --- a/src/world/ipc/weather_change.rs +++ b/src/world/ipc/weather_change.rs @@ -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, }