Option to skip empty slots in Sigil of Holding ()

* Option to skip empty slots in Sigil of Holding
This commit is contained in:
Arcaratus 2016-06-17 18:46:33 -04:00 committed by Nick Ignoffo
parent 466f26d80b
commit 6680e8be49
3 changed files with 45 additions and 9 deletions
src/main/java/WayofTime/bloodmagic

View file

@ -142,6 +142,7 @@ public class ConfigHandler
// Client
public static boolean alwaysRenderRoutingLines;
public static boolean invisibleSpectralBlocks;
public static boolean sigilHoldingSkipsEmptySlots;
// Compat
public static int wailaAltarDisplayMode;
@ -290,6 +291,7 @@ public class ConfigHandler
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();
sigilHoldingSkipsEmptySlots = config.getBoolean( "sigilHoldingSkipsEmptySlots", category, false, "The Sigil of Holding will skip empty sigil slots if set to true.");
category = "Compatibility";
config.addCustomCategoryComment(category, "Compatibility settings");