Skip to content

Commit

Permalink
Feat\!: Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
showierdata9978 committed Jul 26, 2024
1 parent 3069be1 commit 03f96d2
Show file tree
Hide file tree
Showing 23 changed files with 113 additions and 707 deletions.
25 changes: 0 additions & 25 deletions src/main/java/tech/showierdata/pickaxe/Backpack.java

This file was deleted.

91 changes: 0 additions & 91 deletions src/main/java/tech/showierdata/pickaxe/BackupHandler.java

This file was deleted.

51 changes: 0 additions & 51 deletions src/main/java/tech/showierdata/pickaxe/Commands/DebugCommand.java

This file was deleted.

This file was deleted.

120 changes: 0 additions & 120 deletions src/main/java/tech/showierdata/pickaxe/Commands/SearchCommand.java

This file was deleted.

30 changes: 7 additions & 23 deletions src/main/java/tech/showierdata/pickaxe/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,32 +7,16 @@ public class Constants {
public static final String PICKAXE_STRING = "Pickaxe Mod";


@SuppressWarnings("unused")
public static final char DIAMOND_CHAR = '◆';
public static final Vec3d Spawn = new Vec3d(7085, 200, 4115);
public static final int PLOT_ID = 50644;
public static final String SERVER_IP = "mcdiamondfire.com";


public static final int nodes = 7;
public static final String NODE_IP = getNode(PLOT_ID);

public static String getNode(int id) throws ArrayIndexOutOfBoundsException {
//get the first number of the id
int first = Integer.parseInt(Integer.toString(id).substring(0, 1));

if (first > nodes) {
throw new ArrayIndexOutOfBoundsException("Node " + first + " does not exist");
}

String node = "node" + first;
return node + "." + SERVER_IP;
}
public static final int PLOT_ID = 50644;
public static final String SERVER_IP = "mcdiamondfire.com";
public static final String NODE_IP = "node5." + SERVER_IP;

public static final int NATRAL_OVERCLOCK_VALUE = 3;
public static final int MANUAL_OVERCLOCK_VALUE = 4;
public static final int NATRAL_SAGE_VALUE = 1;
public static final int MANUAL_SAGE_VALUE = 2;
public static final int NATURAL_OVERCLOCK_VALUE = 3;
public static final int MANUAL_OVERCLOCK_VALUE = 4;
public static final int NATURAL_SAGE_VALUE = 1;
public static final int MANUAL_SAGE_VALUE = 2;



Expand Down
Loading

0 comments on commit 03f96d2

Please sign in to comment.