Skip to content

Commit

Permalink
fix: the possibility of easter egg should be 0 since it is in develop…
Browse files Browse the repository at this point in the history
…ing.

[publish beta]

Signed-off-by: Liyan Zhao <[email protected]>
  • Loading branch information
zly2006 committed Jul 24, 2024
1 parent fd8984c commit f3f9d63
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,7 @@ private fun <T : ConfigBase<*>> T.debug() = apply { (DEBUG_TAB.add(this)) }
@JvmField val SOLID_FACE_RENDERER = RedenConfigBoolean("solidFaceRenderer").generic()
@JvmField val ENABLE_CLIENT_GLOW = RCBooleanHotkey("enableClientGlow", true, "LEFT_CONTROL,G").hotkey().generic()
@JvmField val SOLID_FACE_SHAPE_PREDICATE = RedenConfigOptionList("solidFaceShapePredicate", ShapePredicateOptionEntry.FULL).generic()
@JvmField val FANCY_BLOCK_OUTLINE = RedenConfigBoolean("fancyBlockOutline", true).generic()
@JvmField val EASTER_EGG_RATE = RedenConfigInteger("easterEggRate", 3, 0, 100).generic()
@JvmField val SCROLL_AMOUNT = RedenConfigFloat("scrollAmount", 1.5f, 0f, 5f).generic()
@JvmField val EASTER_EGG_RATE = RedenConfigInteger("easterEggRate", 0, 0, 100).generic()
// Micro Tick
@JvmField
val BREAKPOINT_RENDERER = RCBooleanHotkey("breakpointRenderer", false, "B", KeybindSettings.INGAME_BOTH).hotkey().mt()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ public class MixinTranslationStorage implements com.github.zly2006.reden.access.
@Unique
private static final Map<String, Text> tempTextMap = new HashMap<>();

@NotNull
@Override
public @NotNull Map<String, Text> getTextMap$reden() {
public Map<String, Text> getTextMap$reden() {
return textMap;
}

Expand Down

0 comments on commit f3f9d63

Please sign in to comment.