1
0
mirror of https://github.com/GeyserMC/PackConverter.git synced 2025-12-19 14:59:21 +00:00

Change the debug flag to --debug/-d

This commit is contained in:
Aurora
2025-08-07 18:51:43 +01:00
parent 51d3175f48
commit 0245a387dd

View File

@@ -38,7 +38,7 @@ import java.util.List;
public class Main {
public static void main(String[] arguments) throws IOException {
List<String> args = Arrays.asList(arguments);
boolean debug = args.contains("debug");
boolean debug = args.contains("--debug") || args.contains("-d");
if (args.contains("nogui")) {
if (!args.contains("--input")) {