From 2e5c2ac02adc47ff607a006851a916b0de150f4f Mon Sep 17 00:00:00 2001 From: thatguy11325 <148832074+thatguy11325@users.noreply.github.com> Date: Fri, 28 Jun 2024 22:26:55 -0400 Subject: [PATCH] Fix alignment --- pokemonred_puffer/data/party.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pokemonred_puffer/data/party.py b/pokemonred_puffer/data/party.py index 306501a..faf286f 100644 --- a/pokemonred_puffer/data/party.py +++ b/pokemonred_puffer/data/party.py @@ -4,6 +4,7 @@ class BoxStruct(Structure): + _pack_ = 1 _fields_ = [ ("Species", c_uint8), ("HP", c_uint16), @@ -26,6 +27,7 @@ class BoxStruct(Structure): class PartyStruct(Structure): + _pack_ = 1 _fields_ = BoxStruct._fields_ + [ ("Level", c_uint8), ("MaxHP", c_uint16),