mirror of
https://gitlab.com/2009scape/rt4-client.git
synced 2025-12-12 09:30:22 -07:00
Expose shift-click option in config
This commit is contained in:
parent
4287af08f7
commit
aaf21d8d4c
2 changed files with 2 additions and 1 deletions
|
|
@ -42,7 +42,7 @@ public class Cheat {
|
||||||
@OriginalMember(owner = "client!dg", name = "f", descriptor = "Z")
|
@OriginalMember(owner = "client!dg", name = "f", descriptor = "Z")
|
||||||
public static boolean displayFps = false;
|
public static boolean displayFps = false;
|
||||||
@OriginalMember(owner = "client!nj", name = "a", descriptor = "Z")
|
@OriginalMember(owner = "client!nj", name = "a", descriptor = "Z")
|
||||||
public static boolean shiftClick = false;
|
public static boolean shiftClick = GlobalConfig.USE_SHIFT_CLICK;
|
||||||
|
|
||||||
@OriginalMember(owner = "client!en", name = "a", descriptor = "(IIIB)V")
|
@OriginalMember(owner = "client!en", name = "a", descriptor = "(IIIB)V")
|
||||||
public static void teleport(@OriginalArg(0) int arg0, @OriginalArg(1) int arg1, @OriginalArg(2) int arg2) {
|
public static void teleport(@OriginalArg(0) int arg0, @OriginalArg(1) int arg1, @OriginalArg(2) int arg2) {
|
||||||
|
|
|
||||||
|
|
@ -46,6 +46,7 @@ public class GlobalConfig {
|
||||||
public static int VIEW_DISTANCE = TILE_DISTANCE * 128;
|
public static int VIEW_DISTANCE = TILE_DISTANCE * 128;
|
||||||
public static float VIEW_FADE_DISTANCE = ((float) TILE_DISTANCE / 28.0f) * 256.0f;
|
public static float VIEW_FADE_DISTANCE = ((float) TILE_DISTANCE / 28.0f) * 256.0f;
|
||||||
|
|
||||||
|
public static boolean USE_SHIFT_CLICK = true;
|
||||||
public static boolean USE_TWEENING = true;
|
public static boolean USE_TWEENING = true;
|
||||||
public static boolean BILINEAR_MINIMAP = true;
|
public static boolean BILINEAR_MINIMAP = true;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue