diff --git a/overrides/config/nomilabs.cfg b/overrides/config/nomilabs.cfg index d42a240..773aad5 100755 --- a/overrides/config/nomilabs.cfg +++ b/overrides/config/nomilabs.cfg @@ -15,6 +15,8 @@ advanced { B:allowOtherPackModes=false # List of Fields to be client side only, acting as @SideOnly(Side.CLIENT). + # DOES NOT WORK WITH CLASSES FROM MINECRAFT OR FORGE! + # Does not work with classes loaded before Nomi Labs' Static Init! # Do not change unless you know what you are doing! # Helps with fixing GrS errors Server Side. # Format: @ @@ -26,6 +28,8 @@ advanced { > # List of Methods to be client side only, acting as @SideOnly(Side.CLIENT). + # DOES NOT WORK WITH CLASSES FROM MINECRAFT OR FORGE! + # Does not work with classes loaded before Nomi Labs' Static Init! # Do not change unless you know what you are doing! # Helps with fixing GrS errors Server Side. # Format: @@ @@ -135,6 +139,8 @@ advanced { B:serverMotdSubstitutions=true # List of Fields to be server side only, acting as @SideOnly(Side.SERVER). + # DOES NOT WORK WITH CLASSES FROM MINECRAFT OR FORGE! + # Does not work with classes loaded before Nomi Labs' Static Init! # Do not change unless you know what you are doing! # Helps with fixing GrS errors Client Side. # Format: @ @@ -146,6 +152,8 @@ advanced { > # List of Methods to be server side only, acting as @SideOnly(Side.SERVER). + # DOES NOT WORK WITH CLASSES FROM MINECRAFT OR FORGE! + # Does not work with classes loaded before Nomi Labs' Static Init! # Do not change unless you know what you are doing! # Helps with fixing GrS errors Client Side. # Format: @@ @@ -372,22 +380,18 @@ advanced { "minecraft difficulty overrides" { # Difficulty (Locked) Override in Expert Mode. Does Not Apply if overrideDifficultyExpert is set to false! - # [default: NORMAL] - # Valid values: - # PEACEFUL - # EASY - # NORMAL - # HARD - S:difficultyExpert=PEACEFUL + # Ordinal of Difficulty. Peaceful = 0, Easy = 1, Normal = 2, Hard = 3. + # [default: 2] + # Min: 0 + # Max: 3 + S:difficultyExpert=0 # Difficulty (Locked) Override in Normal Mode. Does Not Apply if overrideDifficultyNormal is set to false! - # [default: NORMAL] - # Valid values: - # PEACEFUL - # EASY - # NORMAL - # HARD - S:difficultyNormal=NORMAL + # Ordinal of Difficulty. Peaceful = 0, Easy = 1, Normal = 2, Hard = 3. + # [default: 2] + # Min: 0 + # Max: 3 + S:difficultyNormal=2 # Whether to Override Difficulty in Expert Mode. # [default: false] @@ -533,6 +537,12 @@ content { # [default: true] B:enableArchitectureCraftIntegration=true + # Whether to enable Better Questing Fluid Task Fixes. + # Fixes detection of Fluids in Stacked Fluid Containers, and in Simple Fluid Containers. + # Causes over-consuming of fluids in Stacked Simple Fluid Containers, due to limitations with emptying them. + # [default: true] + B:enableBQuFluidTaskFixes=true + # Whether to enable Default World Generator Port Integration, which fixes scaling issues, and adds a cancel button. # [default: true] B:enableDefaultWorldGenIntegration=true