Consistently capitalize RuneLite

This commit is contained in:
Adam
2018-01-06 22:54:24 -05:00
parent a29f55362c
commit 05dc2eb39e
38 changed files with 127 additions and 127 deletions

View File

@@ -58,7 +58,7 @@ public class RuneLite
private static OptionSet options;
@Inject
private RuneliteProperties properties;
private RuneLiteProperties properties;
@Inject
private PluginManager pluginManager;
@@ -98,13 +98,13 @@ public class RuneLite
PROFILES_DIR.mkdirs();
setInjector(Guice.createInjector(new RuneliteModule()));
setInjector(Guice.createInjector(new RuneLiteModule()));
injector.getInstance(RuneLite.class).start();
}
public void start() throws Exception
{
// Load Runelite or Vanilla client
// Load RuneLite or Vanilla client
final boolean hasRs = !getOptions().has("no-rs");
final Optional<Applet> optionalClient = hasRs
? new ClientLoader().loadRs()