Delete build directory
Pruning redundant content from repo.
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,26 +0,0 @@
|
||||
package mcp.client;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
import net.minecraft.client.main.Main;
|
||||
|
||||
public class Start
|
||||
{
|
||||
public static void main(String[] args)
|
||||
{
|
||||
/*
|
||||
* start minecraft game application
|
||||
* --version is just used as 'launched version' in snoop data and is required
|
||||
* Working directory is used as gameDir if not provided
|
||||
*/
|
||||
String assets = System.getenv().containsKey("assetDirectory") ? System.getenv("assetDirectory") : "assets";
|
||||
Main.main(concat(new String[]{"--version", "mcp", "--accessToken", "0", "--assetsDir", assets, "--assetIndex", "1.18", "--userProperties", "{}"}, args));
|
||||
}
|
||||
|
||||
public static <T> T[] concat(T[] first, T[] second)
|
||||
{
|
||||
T[] result = Arrays.copyOf(first, first.length + second.length);
|
||||
System.arraycopy(second, 0, result, first.length, second.length);
|
||||
return result;
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
Manifest-Version: 1.0
|
||||
Specification-Title: playerstats
|
||||
Specification-Vendor: examplemodsareus
|
||||
Specification-Version: 1
|
||||
Implementation-Title: minecraft_mod_player_statistics
|
||||
Implementation-Version: 1.0
|
||||
Implementation-Vendor: examplemodsareus
|
||||
Implementation-Timestamp: 2024-12-03T16:06:41+0000
|
||||
|
||||
Reference in New Issue
Block a user