Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix client_t struct in plugin declarations #423

Merged
merged 1 commit into from
Feb 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading