Add craftable items QOL features (tooltips / hold ALT to toggle craft request) (#241)
This commit is contained in:
@@ -82,6 +82,7 @@ public final class AEConfig extends Configuration implements IConfigurableObject
|
||||
private boolean disableColoredCableRecipesInJEI = true;
|
||||
private int craftingCalculationTimePerTick = 5;
|
||||
private PowerUnits selectedPowerUnit = PowerUnits.AE;
|
||||
private boolean showCraftableTooltip = true;
|
||||
// Spatial IO/Dimension
|
||||
private int storageProviderID = -1;
|
||||
private int storageDimensionID = -1;
|
||||
@@ -248,6 +249,7 @@ public final class AEConfig extends Configuration implements IConfigurableObject
|
||||
this.enableEffects = this.get("Client", "enableEffects", true).getBoolean(true);
|
||||
this.useLargeFonts = this.get("Client", "useTerminalUseLargeFont", false).getBoolean(false);
|
||||
this.useColoredCraftingStatus = this.get("Client", "useColoredCraftingStatus", true).getBoolean(true);
|
||||
this.showCraftableTooltip = this.get("Client", "showCraftableTooltip", true, "Whether to add \"Craftable\" to item tooltips when they can be crafted automatically.").getBoolean(true);
|
||||
|
||||
// load buttons..
|
||||
for (int btnNum = 0; btnNum < 4; btnNum++) {
|
||||
@@ -501,6 +503,10 @@ public final class AEConfig extends Configuration implements IConfigurableObject
|
||||
return this.useColoredCraftingStatus;
|
||||
}
|
||||
|
||||
public boolean isShowCraftableTooltip() {
|
||||
return this.showCraftableTooltip;
|
||||
}
|
||||
|
||||
public boolean isDisableColoredCableRecipesInJEI() {
|
||||
return this.disableColoredCableRecipesInJEI;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user