Pushed version to 6.2

Starting to add speedometer into resourcepacks.
This commit is contained in:
2024-07-13 12:27:05 +02:00
parent 3638718f16
commit fefd82f71f
22 changed files with 551 additions and 182 deletions

View File

@@ -0,0 +1,7 @@
package me.zacharias.speedometer;
public class MissingPropertyException extends Exception {
public MissingPropertyException(String field) {
super("Missing Speedometer config field: " + field);
}
}