Merge remote-tracking branch 'upstream/master' into master
This commit is contained in:
@@ -25,7 +25,7 @@
|
|||||||
|
|
||||||
object ProjectVersions {
|
object ProjectVersions {
|
||||||
const val launcherVersion = "2.2.0"
|
const val launcherVersion = "2.2.0"
|
||||||
const val rlVersion = "1.7.11"
|
const val rlVersion = "1.7.11.1"
|
||||||
|
|
||||||
const val openosrsVersion = "4.8.1"
|
const val openosrsVersion = "4.8.1"
|
||||||
|
|
||||||
|
|||||||
@@ -102,6 +102,7 @@ public class HiscoreResult
|
|||||||
private Skill gauntlet;
|
private Skill gauntlet;
|
||||||
private Skill corruptedGauntlet;
|
private Skill corruptedGauntlet;
|
||||||
private Skill theatreOfBlood;
|
private Skill theatreOfBlood;
|
||||||
|
private Skill theatreOfBloodHardMode;
|
||||||
private Skill thermonuclearSmokeDevil;
|
private Skill thermonuclearSmokeDevil;
|
||||||
private Skill tzKalZuk;
|
private Skill tzKalZuk;
|
||||||
private Skill tzTokJad;
|
private Skill tzTokJad;
|
||||||
@@ -260,6 +261,8 @@ public class HiscoreResult
|
|||||||
return corruptedGauntlet;
|
return corruptedGauntlet;
|
||||||
case THEATRE_OF_BLOOD:
|
case THEATRE_OF_BLOOD:
|
||||||
return theatreOfBlood;
|
return theatreOfBlood;
|
||||||
|
case THEATRE_OF_BLOOD_HARD_MODE:
|
||||||
|
return theatreOfBloodHardMode;
|
||||||
case THERMONUCLEAR_SMOKE_DEVIL:
|
case THERMONUCLEAR_SMOKE_DEVIL:
|
||||||
return thermonuclearSmokeDevil;
|
return thermonuclearSmokeDevil;
|
||||||
case TZKAL_ZUK:
|
case TZKAL_ZUK:
|
||||||
|
|||||||
@@ -123,13 +123,14 @@ class HiscoreResultBuilder
|
|||||||
hiscoreResult.setSarachnis(skills.get(index++));
|
hiscoreResult.setSarachnis(skills.get(index++));
|
||||||
hiscoreResult.setScorpia(skills.get(index++));
|
hiscoreResult.setScorpia(skills.get(index++));
|
||||||
hiscoreResult.setSkotizo(skills.get(index++));
|
hiscoreResult.setSkotizo(skills.get(index++));
|
||||||
if (skills.size() >= 81)
|
hiscoreResult.setTempoross(skills.get(index++));
|
||||||
{
|
|
||||||
hiscoreResult.setTempoross(skills.get(index++));
|
|
||||||
}
|
|
||||||
hiscoreResult.setGauntlet(skills.get(index++));
|
hiscoreResult.setGauntlet(skills.get(index++));
|
||||||
hiscoreResult.setCorruptedGauntlet(skills.get(index++));
|
hiscoreResult.setCorruptedGauntlet(skills.get(index++));
|
||||||
hiscoreResult.setTheatreOfBlood(skills.get(index++));
|
hiscoreResult.setTheatreOfBlood(skills.get(index++));
|
||||||
|
if (skills.size() >= 82)
|
||||||
|
{
|
||||||
|
hiscoreResult.setTheatreOfBloodHardMode(skills.get(index++));
|
||||||
|
}
|
||||||
hiscoreResult.setThermonuclearSmokeDevil(skills.get(index++));
|
hiscoreResult.setThermonuclearSmokeDevil(skills.get(index++));
|
||||||
hiscoreResult.setTzKalZuk(skills.get(index++));
|
hiscoreResult.setTzKalZuk(skills.get(index++));
|
||||||
hiscoreResult.setTzTokJad(skills.get(index++));
|
hiscoreResult.setTzTokJad(skills.get(index++));
|
||||||
|
|||||||
@@ -106,6 +106,7 @@ public enum HiscoreSkill
|
|||||||
THE_GAUNTLET("The Gauntlet", BOSS),
|
THE_GAUNTLET("The Gauntlet", BOSS),
|
||||||
THE_CORRUPTED_GAUNTLET("The Corrupted Gauntlet", BOSS),
|
THE_CORRUPTED_GAUNTLET("The Corrupted Gauntlet", BOSS),
|
||||||
THEATRE_OF_BLOOD("Theatre of Blood", BOSS),
|
THEATRE_OF_BLOOD("Theatre of Blood", BOSS),
|
||||||
|
THEATRE_OF_BLOOD_HARD_MODE("Theatre of Blood: Hard Mode", BOSS),
|
||||||
THERMONUCLEAR_SMOKE_DEVIL("Thermonuclear Smoke Devil", BOSS),
|
THERMONUCLEAR_SMOKE_DEVIL("Thermonuclear Smoke Devil", BOSS),
|
||||||
TZKAL_ZUK("TzKal-Zuk", BOSS),
|
TZKAL_ZUK("TzKal-Zuk", BOSS),
|
||||||
TZTOK_JAD("TzTok-Jad", BOSS),
|
TZTOK_JAD("TzTok-Jad", BOSS),
|
||||||
|
|||||||
@@ -121,17 +121,6 @@ public interface ChatFilterConfig extends Config
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ConfigItem(
|
|
||||||
keyName = "filterLogin",
|
|
||||||
name = "Filter Logged In/Out Messages",
|
|
||||||
description = "Filter your private chat to remove logged in/out messages",
|
|
||||||
position = 8
|
|
||||||
)
|
|
||||||
default boolean filterLogin()
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
@ConfigItem(
|
@ConfigItem(
|
||||||
keyName = "filterGameChat",
|
keyName = "filterGameChat",
|
||||||
name = "Filter Game Chat",
|
name = "Filter Game Chat",
|
||||||
|
|||||||
@@ -205,12 +205,6 @@ public class ChatFilterPlugin extends Plugin
|
|||||||
blockMessage = message == null;
|
blockMessage = message == null;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case LOGINLOGOUTNOTIFICATION:
|
|
||||||
if (config.filterLogin())
|
|
||||||
{
|
|
||||||
blockMessage = true;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
boolean shouldCollapse = chatMessageType == PUBLICCHAT || chatMessageType == MODCHAT
|
boolean shouldCollapse = chatMessageType == PUBLICCHAT || chatMessageType == MODCHAT
|
||||||
|
|||||||
@@ -107,9 +107,10 @@ public class HiscorePanel extends PluginPanel
|
|||||||
NIGHTMARE, OBOR, SARACHNIS,
|
NIGHTMARE, OBOR, SARACHNIS,
|
||||||
SCORPIA, SKOTIZO, TEMPOROSS,
|
SCORPIA, SKOTIZO, TEMPOROSS,
|
||||||
THE_GAUNTLET, THE_CORRUPTED_GAUNTLET, THEATRE_OF_BLOOD,
|
THE_GAUNTLET, THE_CORRUPTED_GAUNTLET, THEATRE_OF_BLOOD,
|
||||||
THERMONUCLEAR_SMOKE_DEVIL, TZKAL_ZUK, TZTOK_JAD,
|
THEATRE_OF_BLOOD_HARD_MODE, THERMONUCLEAR_SMOKE_DEVIL, TZKAL_ZUK,
|
||||||
VENENATIS, VETION, VORKATH,
|
TZTOK_JAD, VENENATIS, VETION,
|
||||||
WINTERTODT, ZALCANO, ZULRAH
|
VORKATH, WINTERTODT, ZALCANO,
|
||||||
|
ZULRAH
|
||||||
);
|
);
|
||||||
|
|
||||||
private static final HiscoreEndpoint[] ENDPOINTS = {
|
private static final HiscoreEndpoint[] ENDPOINTS = {
|
||||||
|
|||||||
Binary file not shown.
|
After Width: | Height: | Size: 263 B |
Reference in New Issue
Block a user