Skip to content

Commit 22450e7

Browse files
committed
Fix debug-dump filename
1 parent 458daaa commit 22450e7

File tree

1 file changed

+1
-1
lines changed
  • BlueMapCommon/src/main/java/de/bluecolored/bluemap/common/plugin/commands

1 file changed

+1
-1
lines changed

BlueMapCommon/src/main/java/de/bluecolored/bluemap/common/plugin/commands/Commands.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -644,7 +644,7 @@ public int debugDumpCommand(CommandContext<S> context) {
644644
final CommandSource source = commandSourceInterface.apply(context.getSource());
645645

646646
try {
647-
Path file = plugin.getBlueMap().getConfig().getCoreConfig().getData().resolve("dump.json.gz");
647+
Path file = plugin.getBlueMap().getConfig().getCoreConfig().getData().resolve("dump.json");
648648
StateDumper.global().dump(file);
649649

650650
source.sendMessage(Text.of(TextColor.GREEN, "Dump created at: " + file));

0 commit comments

Comments
 (0)