Fix Issues with Sleeping in Void Dimension (#868)

[BUG]
This commit is contained in:
Integer Limit 2024-08-06 21:26:17 +10:00 committed by GitHub
parent aa9400470a
commit ec84cf911e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 64 additions and 1 deletions

View File

@ -746,7 +746,7 @@
},
{
"projectID": 932060,
"fileID": 5595320,
"fileID": 5601481,
"required": true
},
{

View File

@ -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: <CLASS>@<FIELD>
# 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: <CLASS>@<METHOD>@<DESC>
# 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: <CLASS>@<FIELD>
# 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: <CLASS>@<METHOD>@<DESC>
# 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
>
}
##########################################################################################################