alpha
Login
or
Join now
sickday.tngl.sh
/
hla-client
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
A RuneTek3 client (377) that is deobfuscated, converted to Kotlin, and includes QoL improvements.
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
refactor
author
lesleyrs
date
2 years ago
(Apr 20, 2024, 2:59 AM +0200)
commit
ccb7d410
ccb7d410d978e4bcf4d567a2f774e0e3abf8cbe3
parent
03023c9e
03023c9edb7c668bf52f6a9f707c838f73bd46a8
+2
-2
1 changed file
Expand all
Collapse all
Unified
Split
src
main
java
com
jagex
runescape
util
SignLink.java
+2
-2
src/main/java/com/jagex/runescape/util/SignLink.java
Reviewed
···
82
82
83
83
public void run() {
84
84
active = true;
85
85
-
String directory = cacheLocation();
85
85
+
String directory = findcachedir();
86
86
uid = getUID(directory);
87
87
88
88
try {
···
294
294
}
295
295
}
296
296
297
297
-
public static String cacheLocation() {
297
297
+
public static String findcachedir() {
298
298
File file = new File(System.getProperty("user.home") + System.getProperty("file.separator") + CACHE_NAME + System.getProperty("file.separator"));
299
299
if (!file.exists()) {
300
300
if (!file.mkdir()) {