From ec84cf911ec5cf1de052942d3ce1fe98c1826a0b Mon Sep 17 00:00:00 2001 From: Integer Limit <103940576+IntegerLimit@users.noreply.github.com> Date: Tue, 6 Aug 2024 21:26:17 +1000 Subject: [PATCH] Fix Issues with Sleeping in Void Dimension (#868) [BUG] --- manifest.json | 2 +- overrides/config/nomilabs.cfg | 63 +++++++++++++++++++++++++++++++++++ 2 files changed, 64 insertions(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index a749227..4ae4535 100644 --- a/manifest.json +++ b/manifest.json @@ -746,7 +746,7 @@ }, { "projectID": 932060, - "fileID": 5595320, + "fileID": 5601481, "required": true }, { diff --git a/overrides/config/nomilabs.cfg b/overrides/config/nomilabs.cfg index fa6191f..712dd44 100755 --- a/overrides/config/nomilabs.cfg +++ b/overrides/config/nomilabs.cfg @@ -23,6 +23,28 @@ advanced { # [default: false] B:allowOtherPackModes=false + # List of Fields to be client side only, acting as @SideOnly(Side.CLIENT). + # Do not change unless you know what you are doing! + # Helps with fixing GrS errors Server Side. + # Format: @ + # Example: gregtech/api/recipes/recipeproperties/TemperatureProperty@KEY + # Accepts Obfuscated Fields. + # Many Client Side Only modifications, on the same class, may be inefficient. + # [default: ] + S:clientSideFields < + > + + # List of Methods to be client side only, acting as @SideOnly(Side.CLIENT). + # Do not change unless you know what you are doing! + # Helps with fixing GrS errors Server Side. + # Format: @@ + # Example: gregtech/api/recipes/recipeproperties/TemperatureProperty@drawInfo@(Lnet/minecraft/client/Minecraft;IIILjava/lang/Object;)V + # Accepts Obfuscated Methods. + # Many Client Side Only modifications, on the same class, may be inefficient. + # [default: ] + S:clientSideMethods < + > + # Whether to disable the Narrator. # Fixes Crashes in Arm Macs, in some very specific environments. # If your game is crashing, try enabling this! @@ -98,6 +120,33 @@ advanced { # [default: false] B:serverMotdSubstitutions=true + # List of Fields to be server side only, acting as @SideOnly(Side.SERVER). + # Do not change unless you know what you are doing! + # Helps with fixing GrS errors Client Side. + # Format: @ + # Example: gregtech/api/recipes/recipeproperties/TemperatureProperty@KEY + # Accepts Obfuscated Fields. + # Many Server Side Only modifications, on the same class, may be inefficient. + # [default: ] + S:serverSideFields < + > + + # List of Methods to be server side only, acting as @SideOnly(Side.SERVER). + # Do not change unless you know what you are doing! + # Helps with fixing GrS errors Client Side. + # Format: @@ + # Example: gregtech/api/recipes/recipeproperties/TemperatureProperty@drawInfo@(Lnet/minecraft/client/Minecraft;IIILjava/lang/Object;)V + # Accepts Obfuscated Methods. + # Many Server Side Only modifications, on the same class, may be inefficient. + # [default: ] + S:serverSideMethods < + > + + # Whether to enable Syncing between Dimensions. + # This means that changing difficulty, time, spawn point or other properties in one dimension will sync to all dimensions. + # [default: false] + B:syncDimProperties=true + ########################################################################################################## # fluid registry #--------------------------------------------------------------------------------------------------------# @@ -539,6 +588,20 @@ content { # None of the below options work if this config is set to false. # [default: true] B:enableDraconicEvolutionIntegration=true + + # Rough time in Ticks, Required for the Charging Phase of Fusion Injectors, for each tier. + # Charging Time is assuming Maximum Energy is given to the Injector Each Tick. + # Should have 4 Values: Basic, Wyvern, Draconic, Chaotic. + # Set this to 1 to Disable Energy Limits, and have the Fusion Injector take in as much power as provided. + # [default: 300, 220, 140, 60] + # Min: 1 + # Max: 2147483647 + I:fusionChargingTime < + 300 + 220 + 140 + 60 + > } ##########################################################################################################