Remove DWORD from client connection user index

This commit is contained in:
notmatthewbeshay 2026-03-10 07:53:55 +11:00
parent 3da761347f
commit 5d72f9214a

View file

@ -41,7 +41,7 @@ public:
Socket *getSocket() { return connection->getSocket(); } // 4J Added
private:
DWORD m_userIndex; // 4J Added
int m_userIndex; // 4J Added
public:
SavedDataStorage *savedDataStorage;
ClientConnection(Minecraft *minecraft, const std::wstring& ip, int port);
@ -137,4 +137,4 @@ public:
virtual void handleXZ(std::shared_ptr<XZPacket> packet);
void displayPrivilegeChanges(std::shared_ptr<MultiplayerLocalPlayer> player, unsigned int oldPrivileges);
};
};