mirror of
https://gitlab.com/2009scape/rt4-client.git
synced 2025-12-09 16:45:46 -07:00
Default arguments for jar/gradle run
This commit is contained in:
parent
6d585ea21d
commit
b3fd9e76cf
1 changed files with 6 additions and 1 deletions
|
|
@ -17,7 +17,12 @@ public final class client extends GameShell {
|
||||||
public static void main(@OriginalArg(0) String[] arg0) {
|
public static void main(@OriginalArg(0) String[] arg0) {
|
||||||
try {
|
try {
|
||||||
if (arg0.length != 4) {
|
if (arg0.length != 4) {
|
||||||
Static131.method2577("argument count");
|
arg0 = new String[4];
|
||||||
|
arg0[0] = "1";
|
||||||
|
arg0[1] = "live";
|
||||||
|
arg0[2] = "english";
|
||||||
|
arg0[3] = "game0";
|
||||||
|
// Static131.method2577("argument count");
|
||||||
}
|
}
|
||||||
@Pc(15) int local15 = -1;
|
@Pc(15) int local15 = -1;
|
||||||
Static187.worldListId = Integer.parseInt(arg0[0]);
|
Static187.worldListId = Integer.parseInt(arg0[0]);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue