Make chat show full history when opened

This commit is contained in:
mschiller890
2026-03-14 12:22:14 +01:00
parent 76839dfbaa
commit 4e179a47b6
4 changed files with 96 additions and 19 deletions

View File

@@ -39,6 +39,7 @@ public:
void handleClick(int button, int x, int y);
void handleKeyPressed( int key );
void scrollChat(int delta);
void tick();
void render(float a, bool mouseFree, int xMouse, int yMouse);
@@ -96,6 +97,7 @@ private:
int MAX_MESSAGE_WIDTH;
//ItemRenderer itemRenderer;
GuiMessageList guiMessages;
int chatScrollOffset;
Random random;
Minecraft* minecraft;