A RuneTek3 client (377) that is deobfuscated, converted to Kotlin, and includes QoL improvements.
0

Configure Feed

Select the types of activity you want to include in your feed.

fixing offsets

+3 -3
+3 -3
src/main/java/com/jagex/runescape/GameFrame.java
··· 12 12 pack(); 13 13 setTitle("Jagex"); 14 14 setResizable(false); 15 - gameStub.extraWidth = getInsets().left + getInsets().right; 16 - gameStub.extraHeight = getInsets().top + getInsets().bottom; 17 - setSize(width + gameStub.extraWidth, height + gameStub.extraHeight); 15 + gameStub.extraWidth = getInsets().left; 16 + gameStub.extraHeight = getInsets().top; 17 + setSize(width + gameStub.extraWidth + getInsets().right, height + gameStub.extraHeight + getInsets().bottom); 18 18 setVisible(true); 19 19 toFront(); 20 20