Skip to content

Commit 5c0d466

Browse files
committed
3.2.2
1 parent 77d64ac commit 5c0d466

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ minecraft_version = 1.19.3
66
yarn_mappings = 1.19.3+build.5
77
loader_version = 0.14.11
88

9-
mod_version = 3.2.1
9+
mod_version = 3.2.2
1010
maven_group = net.krlite
1111
archives_base_name = splasher-1.19
1212

1313
# Dependencies
1414
fabric_version = 0.71.0+1.19.3
15-
pierced_version = v1.1-patch2
15+
pierced_version = v1.2
1616
equator_utils_version = v1.0.5

src/main/java/net/krlite/splasher/SplasherConfig.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package net.krlite.splasher;
22

3-
import net.krlite.pierced.annotation.Category;
43
import net.krlite.pierced.annotation.Comment;
4+
import net.krlite.pierced.annotation.Table;
55
import net.krlite.pierced.config.Pierced;
66
import net.krlite.pierced.core.EnumLocalizable;
77

@@ -17,16 +17,16 @@ public SplasherConfig(File file) {
1717
public boolean followClientLanguage = true;
1818

1919
/* Debug */
20-
@Category("debug")
20+
@Table("debug")
2121
@Comment("Show debug info")
22-
public boolean debugInfo = true;
22+
public boolean debugInfo = false;
2323

2424
/* Splash */
25-
@Category("splash")
25+
@Table("splash")
2626
@Comment("Make splash texts a little colorful")
2727
public boolean colorful = false;
2828

29-
@Category("splash")
29+
@Table("splash")
3030

3131
@Comment("Controls the splash text random rate")
3232
@Comment
@@ -36,15 +36,15 @@ public SplasherConfig(File file) {
3636
@Comment("Both - Reload both at reloading and clicking")
3737
public RandomRate randomRate = RandomRate.BOTH;
3838

39-
@Category("splash")
39+
@Table("splash")
4040

4141
@Comment("Controls the splash text contents")
4242
@Comment
4343
@Comment("Disabled - Disable splash texts")
4444
@Comment("Vanilla - Show only vanilla splash texts")
4545
@Comment("Custom - Show only custom splash texts")
4646
@Comment("Both - Show both vanilla and custom splash texts")
47-
public SplashMode splashMode = SplashMode.BOTH;
47+
public SplashMode splashMode = SplashMode.VANILLA;
4848

4949
public enum RandomRate implements EnumLocalizable {
5050
NEVER(false, false, "Never"),

0 commit comments

Comments
 (0)