Skip to content

Commit 8232e33

Browse files
Lang files
1 parent 31a1a70 commit 8232e33

3 files changed

Lines changed: 29 additions & 25 deletions

File tree

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ dependencies {
5151
include "com.github.Chocohead:Fabric-ASM:v2.1"
5252

5353
// Compatibility
54-
modImplementation 'com.github.jellysquid3:lithium-fabric:90c2427'
55-
modImplementation 'com.github.jellysquid3:phosphor-fabric:0749029'
54+
modImplementation 'com.github.jellysquid3:lithium-fabric:5c9712e'
55+
modImplementation 'com.github.jellysquid3:phosphor-fabric:4c43554'
5656

5757
// Fun
5858
modRuntime ('me.shedaniel:RoughlyEnoughItems:5.6.1') {

src/main/java/org/dimdev/vanillafix/util/config/ModConfig.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,20 @@
77

88
@Config(name = "vanillafix")
99
public class ModConfig implements ConfigData {
10+
@ConfigEntry.Category("general")
1011
@ConfigEntry.Gui.TransitiveObject
1112
public General general = new General();
1213

14+
@ConfigEntry.Category("bugFixes")
1315
@ConfigEntry.Gui.TransitiveObject
1416
public BugFixes bugFixes = new BugFixes();
1517

18+
@ConfigEntry.Category("clientOnly")
1619
@ConfigEntry.Gui.TransitiveObject
1720
public ClientOnly clientOnly = new ClientOnly();
1821

19-
@ConfigEntry.Gui.Excluded
22+
@ConfigEntry.Category("antiCheat")
23+
@ConfigEntry.Gui.TransitiveObject
2024
public AntiCheat antiCheat = new AntiCheat();
2125

2226
public static class General {
Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
{
2-
"vanillafix.config.title": "VanillaFix Configuration",
3-
"vanillafix.config.category.bugFixes": "Bug Fixes",
4-
"vanillafix.config.category.clientOnly": "Client Only",
5-
"vanillafix.config.category.antiCheat": "Anti Cheat",
6-
"vanillafix.config.category.general": "General",
7-
"vanillafix.config.value.general.bitfieldBlockstates": "Bitfield Blockstates",
8-
"vanillafix.config.value.general.profilerImprovements": "Profiler Improvements",
9-
"vanillafix.config.value.bugFixes.disableInitialChunkLoad": "Disable Initial Chunk Load",
10-
"vanillafix.config.value.bugFixes.fixRecipeBookIngredientsWithTags": "Fix Recipe Book Ingredients with Tags",
11-
"vanillafix.config.value.bugFixes.updateFallDistance": "Update Entity Fall Distance",
12-
"vanillafix.config.value.bugFixes.fixStoneShoreColors": "Fix Stone Shore Colors",
13-
"vanillafix.config.value.bugFixes.phantomMobCap": "Phantom Mob Cap",
14-
"vanillafix.config.value.bugFixes.underwaterSugarcaneFix": "Underwater Sugarcane fix",
15-
"vanillafix.config.value.bugFixes.doNotConsumeFoodOnDeath": "Fix consumption of food on death",
16-
"vanillafix.config.value.bugFixes.fixSignCommands": "Fix sign command length",
17-
"vanillafix.config.value.clientOnly.optimizedAnimatedTextures": "Tick only Visible Textures",
18-
"vanillafix.config.value.clientOnly.screenInNetherPortal": "Allow opening screens in Nether portals",
19-
"vanillafix.config.value.clientOnly.splitScreenAndTextureProfiler": "Split Gui Profiler",
20-
"vanillafix.config.value.clientOnly.fastInterdimensionalTeleportation": "Fast Interdimensional Teleportation",
21-
"vanillafix.config.value.clientOnly.cullParticles": "Cull invisible particles",
22-
"vanillafix.config.value.antiCheat.fixStepHeight": "Fix Step Height",
23-
"vanillafix.config.value.antiCheat.noPlayerInvulnerabilityAfterTeleport": "Fix Teleportation Invulnerability",
2+
"text.autoconfig.vanillafix.title": "VanillaFix Configuration",
3+
"text.autoconfig.vanillafix.category.bugFixes": "Bug Fixes",
4+
"text.autoconfig.vanillafix.category.clientOnly": "Client Only",
5+
"text.autoconfig.vanillafix.category.antiCheat": "Anti Cheat",
6+
"text.autoconfig.vanillafix.category.general": "General",
7+
"text.autoconfig.vanillafix.option.general.bitfieldBlockstates": "Bitfield Blockstates",
8+
"text.autoconfig.vanillafix.option.general.profilerImprovements": "Profiler Improvements",
9+
"text.autoconfig.vanillafix.option.bugFixes.disableInitialChunkLoad": "Disable Initial Chunk Load",
10+
"text.autoconfig.vanillafix.option.bugFixes.fixRecipeBookIngredientsWithTags": "Fix Recipe Book Ingredients with Tags",
11+
"text.autoconfig.vanillafix.option.bugFixes.updateFallDistance": "Update Entity Fall Distance",
12+
"text.autoconfig.vanillafix.option.bugFixes.fixStoneShoreColors": "Fix Stone Shore Colors",
13+
"text.autoconfig.vanillafix.option.bugFixes.phantomMobCap": "Phantom Mob Cap",
14+
"text.autoconfig.vanillafix.option.bugFixes.underwaterSugarcaneFix": "Underwater Sugarcane fix",
15+
"text.autoconfig.vanillafix.option.bugFixes.doNotConsumeFoodOnDeath": "Fix consumption of food on death",
16+
"text.autoconfig.vanillafix.option.bugFixes.fixSignCommands": "Fix sign command length",
17+
"text.autoconfig.vanillafix.option.clientOnly.optimizedAnimatedTextures": "Tick only Visible Textures",
18+
"text.autoconfig.vanillafix.option.clientOnly.screenInNetherPortal": "Allow opening screens in Nether portals",
19+
"text.autoconfig.vanillafix.option.clientOnly.splitScreenAndTextureProfiler": "Split Gui Profiler",
20+
"text.autoconfig.vanillafix.option.clientOnly.fastInterdimensionalTeleportation": "Fast Interdimensional Teleportation",
21+
"text.autoconfig.vanillafix.option.clientOnly.cullParticles": "Cull particles outside of frustum",
22+
"text.autoconfig.vanillafix.option.antiCheat.fixStepHeight": "Fix Step Height",
23+
"text.autoconfig.vanillafix.option.antiCheat.noPlayerInvulnerabilityAfterTeleport": "Fix Teleportation Invulnerability",
2424
"vanillafix.debug.switch_profiler.help": "F3 + S = Cycle client <-> integrated server profiler"
2525
}

0 commit comments

Comments
 (0)