client: only enable developer mode if launcher version isn't set
This commit is contained in:
@@ -183,9 +183,9 @@ public class RuneLite
|
|||||||
System.exit(0);
|
System.exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
final boolean developerMode = options.has("developer-mode");
|
final boolean developerMode = options.has("developer-mode") && RuneLiteProperties.getLauncherVersion() == null;
|
||||||
|
|
||||||
if (developerMode && RuneLiteProperties.getLauncherVersion() == null)
|
if (developerMode)
|
||||||
{
|
{
|
||||||
boolean assertions = false;
|
boolean assertions = false;
|
||||||
assert assertions = true;
|
assert assertions = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user