Skip to content

Commit

Permalink
v3.4.0 b623
Browse files Browse the repository at this point in the history
  • Loading branch information
stumper66 committed Mar 30, 2022
1 parent 5a9efad commit 2718592
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@
import java.util.Collections;
import java.util.List;

/**
* Parses commands for various debug stuff
*
* @author stumper66
* @since 3.2.0
*/

public class DebugSubcommand extends MessagesBase implements Subcommand {
public DebugSubcommand(final LevelledMobs main) {
super(main);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@
import java.util.LinkedList;
import java.util.List;

/**
* Used in conjunction with the chunk kill count feature
*
* @author stumper66
* @since 3.4.0
*/

public class AdjacentChunksResult {
public AdjacentChunksResult(){
this.chunkKeys = new LinkedList<>();
Expand Down
7 changes: 7 additions & 0 deletions src/main/java/me/lokka30/levelledmobs/misc/DebugCreator.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;

/**
* Creates debug.zip for troubleshooting purposes
*
* @author stumper66
* @since 3.2.0
*/

public class DebugCreator {
public static void createDebug(final @NotNull LevelledMobs main, final CommandSender sender){
final String pluginDir = main.getDataFolder().getAbsolutePath();
Expand Down

0 comments on commit 2718592

Please sign in to comment.