Correct capitalisations of "RuneScape" (#10142)
This commit is contained in:
committed by
Tomas Slusny
parent
897cfffa01
commit
6beddcb1e9
@@ -164,7 +164,7 @@ public interface ChatColorConfig extends Config
|
|||||||
position = 45,
|
position = 45,
|
||||||
keyName = "opaqueServerMessage",
|
keyName = "opaqueServerMessage",
|
||||||
name = "Server message",
|
name = "Server message",
|
||||||
description = "Color of Server Messages (eg. 'Welcome to Runescape')"
|
description = "Color of Server Messages (eg. 'Welcome to RuneScape')"
|
||||||
)
|
)
|
||||||
Color opaqueServerMessage();
|
Color opaqueServerMessage();
|
||||||
|
|
||||||
@@ -404,7 +404,7 @@ public interface ChatColorConfig extends Config
|
|||||||
position = 75,
|
position = 75,
|
||||||
keyName = "transparentServerMessage",
|
keyName = "transparentServerMessage",
|
||||||
name = "Server message (transparent)",
|
name = "Server message (transparent)",
|
||||||
description = "Color of Server Messages (eg. 'Welcome to Runescape') (transparent)"
|
description = "Color of Server Messages (eg. 'Welcome to RuneScape') (transparent)"
|
||||||
)
|
)
|
||||||
Color transparentServerMessage();
|
Color transparentServerMessage();
|
||||||
|
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ import net.runelite.api.coords.WorldPoint;
|
|||||||
* <p>
|
* <p>
|
||||||
* These puzzles are established by having some way to test the distance from the solution via "warmth", where being
|
* These puzzles are established by having some way to test the distance from the solution via "warmth", where being
|
||||||
* colder means one is farther away from the target, and being warmer means one is closer to it, with the goal being to
|
* colder means one is farther away from the target, and being warmer means one is closer to it, with the goal being to
|
||||||
* reach the most warm value to discover the solution point. Hot-cold puzzles in Old School Runescape are implemented
|
* reach the most warm value to discover the solution point. Hot-cold puzzles in Old School RuneScape are implemented
|
||||||
* with specific set of solution points, so this solver will filter from a provided set of possible solutions as new
|
* with specific set of solution points, so this solver will filter from a provided set of possible solutions as new
|
||||||
* signals of temperatures and temperature changes are provided.
|
* signals of temperatures and temperature changes are provided.
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -97,7 +97,7 @@ import net.runelite.http.api.hiscore.Skill;
|
|||||||
@Slf4j
|
@Slf4j
|
||||||
public class HiscorePanel extends PluginPanel
|
public class HiscorePanel extends PluginPanel
|
||||||
{
|
{
|
||||||
/* The maximum allowed username length in runescape accounts */
|
/* The maximum allowed username length in RuneScape accounts */
|
||||||
private static final int MAX_USERNAME_LENGTH = 12;
|
private static final int MAX_USERNAME_LENGTH = 12;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -345,7 +345,7 @@ public class HiscorePanel extends PluginPanel
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Runescape usernames can't be longer than 12 characters long */
|
/* RuneScape usernames can't be longer than 12 characters long */
|
||||||
if (lookup.length() > MAX_USERNAME_LENGTH)
|
if (lookup.length() > MAX_USERNAME_LENGTH)
|
||||||
{
|
{
|
||||||
searchBar.setIcon(IconTextField.Icon.ERROR);
|
searchBar.setIcon(IconTextField.Icon.ERROR);
|
||||||
|
|||||||
Reference in New Issue
Block a user