Skip to content

Commit

Permalink
Merge pull request #423 from proxict/fix/client_t
Browse files Browse the repository at this point in the history
Fix client_t struct in plugin declarations
  • Loading branch information
proxict authored Feb 5, 2024
2 parents 8a70784 + 5b08bc8 commit d3a7c91
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions plugins/declarations.h
Original file line number Diff line number Diff line change
Expand Up @@ -965,12 +965,16 @@ typedef struct {//(0x2146c);
int var_03;
} clientSnapshot_t; //size: 0x2f84

#pragma pack()

typedef struct {
char num;
char data[256];
int dataLen;
} voices_t;

#pragma pack(1)

typedef struct {
int checksum;
byte bytedata[2000];
Expand Down Expand Up @@ -1143,6 +1147,8 @@ typedef struct client_s
byte gamestateSent;
byte hasValidPassword;
statData_t stats;
int localization; // loc_language
qboolean lockedout;
}client_t;


Expand Down

0 comments on commit d3a7c91

Please sign in to comment.