Browse Source

🐛 [hellfire] Items with negative AC morphing in to high positive AC in multiplayer

pull/1485/head
Anders Jenbo 5 years ago
parent
commit
1ff91b3aca
  1. 4
      Source/msg.h

4
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 {

Loading…
Cancel
Save