8000 Backport "Merge PR #5612: FIX(positional-audio): Update Among Us plugin to work with v2022.3.29s (1864)" to 1.4.x by Krzmbrzl · Pull Request #5654 · mumble-voip/mumble · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Backport "Merge PR #5612: FIX(positional-audio): Update Among Us plugin to work with v2022.3.29s (1864)" to 1.4.x #5654

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

Merged
merged 1 commit into from
May 8, 2022
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
13 changes: 11 additions & 2 deletions plugins/amongus/structs.h
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ struct AmongUsClient_Fields : InnerNet_InnerNetClient_Fields {
DiscoverState discoverState;
ptr_t disconnectHandlers;
ptr_t gameListHandlers;
int32_t crossplayPrivilegeError;
};

struct AmongUsClient_StaticFields {
Expand All @@ -239,14 +240,20 @@ struct AmongUsClient_o {
struct PlayerControl_Fields : InnerNet_InnerNetObject_Fields {
int32_t lastStartCounter;
uint8_t playerId;
ptr_t friendCode;
ptr_t puid;
float maxReportDistance;
bool moveable;
ptr_t bodySprites;
ptr_t currentBodySprite;
ptr_t normalBodySprite;
int32_t currentOutfitType;
bool inVent;
bool protectedByGuardianThisRound;
bool shapeshifting;
ptr_t cachedData;
bool protectedByGuardian;
float flashlightAngle;
ptr_t footSteps;
ptr_t killSfx;
ptr_t killAnimations;
Expand All @@ -261,8 +268,8 @@ struct PlayerControl_Fields : InnerNet_InnerNetObject_Fields {
ptr_t currentPet;
ptr_t hatRenderer;
ptr_t visorSlot;
ptr_t spriteRenderer;
ptr_t spriteAnim;
ptr_t myAnim;
ptr_t horseAnim;
ptr_t hitBuffer;
ptr_t myTasks;
UnityEngine_Vector3_o defaultPlayerScale;
Expand Down Expand Up @@ -318,6 +325,8 @@ struct GameData_PlayerOutfit_o {

struct GameData_PlayerInfo_Fields {
uint8_t playerId;
ptr_t friendCode;
ptr_t puid;
ptr_t outfits;
uint32_t playerLevel;
bool disconnected;
Expand Down
0