Config for spectral block visible-ness
true = Invisible (default) false = Visible from the outside
This commit is contained in:
parent
9253d6a410
commit
3f28a9e268
2 changed files with 4 additions and 1 deletions
|
@ -137,6 +137,7 @@ public class ConfigHandler
|
|||
|
||||
// Client
|
||||
public static boolean alwaysRenderRoutingLines;
|
||||
public static boolean invisibleSpectralBlocks;
|
||||
|
||||
// Compat
|
||||
public static int wailaAltarDisplayMode;
|
||||
|
@ -284,6 +285,7 @@ public class ConfigHandler
|
|||
category = "Client";
|
||||
config.addCustomCategoryComment(category, "Client only settings");
|
||||
alwaysRenderRoutingLines = config.getBoolean("alwaysRenderRoutingLines", category, false, "Always renders the beams between routing nodes. If false, only renders while a Node Router is being held.");
|
||||
invisibleSpectralBlocks = config.get(category, "invisibleSpectralBlocks", true, "Spectral Blocks (Used by the Suppression Sigil to store fluids) will not render at all. If false, a see through texture will render. [default: true]").setRequiresMcRestart(true).getBoolean();
|
||||
|
||||
category = "Compatibility";
|
||||
config.addCustomCategoryComment(category, "Compatibility settings");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue