From 1ff91b3acacfb01bc4ed8df148546ca769752182 Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Mon, 12 Apr 2021 18:35:50 +0200 Subject: [PATCH] :bug: [hellfire] Items with negative AC morphing in to high positive AC in multiplayer --- Source/msg.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/msg.h b/Source/msg.h index d9669d102..683f81e52 100644 --- a/Source/msg.h +++ b/Source/msg.h @@ -107,7 +107,7 @@ typedef struct TCmdGItem { Uint8 bMinStr; Uint8 bMinMag; Uint8 bMinDex; - Uint8 bAC; + Sint16 bAC; } TCmdGItem; typedef struct TCmdPItem { @@ -129,7 +129,7 @@ typedef struct TCmdPItem { Uint8 bMinStr; Uint8 bMinMag; Uint8 bMinDex; - Uint8 bAC; + Sint16 bAC; } TCmdPItem; typedef struct TCmdChItem {