1
1
package net .krlite .splasher ;
2
2
3
- import net .krlite .pierced .annotation .Category ;
4
3
import net .krlite .pierced .annotation .Comment ;
4
+ import net .krlite .pierced .annotation .Table ;
5
5
import net .krlite .pierced .config .Pierced ;
6
6
import net .krlite .pierced .core .EnumLocalizable ;
7
7
@@ -17,16 +17,16 @@ public SplasherConfig(File file) {
17
17
public boolean followClientLanguage = true ;
18
18
19
19
/* Debug */
20
- @ Category ("debug" )
20
+ @ Table ("debug" )
21
21
@ Comment ("Show debug info" )
22
- public boolean debugInfo = true ;
22
+ public boolean debugInfo = false ;
23
23
24
24
/* Splash */
25
- @ Category ("splash" )
25
+ @ Table ("splash" )
26
26
@ Comment ("Make splash texts a little colorful" )
27
27
public boolean colorful = false ;
28
28
29
- @ Category ("splash" )
29
+ @ Table ("splash" )
30
30
31
31
@ Comment ("Controls the splash text random rate" )
32
32
@ Comment
@@ -36,15 +36,15 @@ public SplasherConfig(File file) {
36
36
@ Comment ("Both - Reload both at reloading and clicking" )
37
37
public RandomRate randomRate = RandomRate .BOTH ;
38
38
39
- @ Category ("splash" )
39
+ @ Table ("splash" )
40
40
41
41
@ Comment ("Controls the splash text contents" )
42
42
@ Comment
43
43
@ Comment ("Disabled - Disable splash texts" )
44
44
@ Comment ("Vanilla - Show only vanilla splash texts" )
45
45
@ Comment ("Custom - Show only custom splash texts" )
46
46
@ Comment ("Both - Show both vanilla and custom splash texts" )
47
- public SplashMode splashMode = SplashMode .BOTH ;
47
+ public SplashMode splashMode = SplashMode .VANILLA ;
48
48
49
49
public enum RandomRate implements EnumLocalizable {
50
50
NEVER (false , false , "Never" ),
0 commit comments