Skip to content

Commit

Permalink
3.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
KrLite committed Jan 8, 2023
1 parent 77d64ac commit 5c0d466
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ minecraft_version = 1.19.3
yarn_mappings = 1.19.3+build.5
loader_version = 0.14.11

mod_version = 3.2.1
mod_version = 3.2.2
maven_group = net.krlite
archives_base_name = splasher-1.19

# Dependencies
fabric_version = 0.71.0+1.19.3
pierced_version = v1.1-patch2
pierced_version = v1.2
equator_utils_version = v1.0.5
14 changes: 7 additions & 7 deletions src/main/java/net/krlite/splasher/SplasherConfig.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package net.krlite.splasher;

import net.krlite.pierced.annotation.Category;
import net.krlite.pierced.annotation.Comment;
import net.krlite.pierced.annotation.Table;
import net.krlite.pierced.config.Pierced;
import net.krlite.pierced.core.EnumLocalizable;

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

/* Debug */
@Category("debug")
@Table("debug")
@Comment("Show debug info")
public boolean debugInfo = true;
public boolean debugInfo = false;

/* Splash */
@Category("splash")
@Table("splash")
@Comment("Make splash texts a little colorful")
public boolean colorful = false;

@Category("splash")
@Table("splash")

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

@Category("splash")
@Table("splash")

@Comment("Controls the splash text contents")
@Comment
@Comment("Disabled - Disable splash texts")
@Comment("Vanilla - Show only vanilla splash texts")
@Comment("Custom - Show only custom splash texts")
@Comment("Both - Show both vanilla and custom splash texts")
public SplashMode splashMode = SplashMode.BOTH;
public SplashMode splashMode = SplashMode.VANILLA;

public enum RandomRate implements EnumLocalizable {
NEVER(false, false, "Never"),
Expand Down

0 comments on commit 5c0d466

Please sign in to comment.