Frequency Transmitter works now
This commit is contained in:
parent
37dc52d6df
commit
f746df428b
2 changed files with 69 additions and 9 deletions
|
@ -12,6 +12,8 @@ public class ConfigTechReborn
|
|||
public static String CATEGORY_UU = "uu";
|
||||
public static String CATEGORY_EMC = "emc";
|
||||
public static String CATEGORY_INTEGRATION = "Integration";
|
||||
public static String CATEGORY_FEATURES = "Features";
|
||||
|
||||
public static double FortuneSecondaryOreMultiplierPerLevel;
|
||||
public static boolean RubberSaplingLoot;
|
||||
public static boolean TinIngotsLoot;
|
||||
|
@ -77,6 +79,9 @@ public class ConfigTechReborn
|
|||
public static int CloakingDeviceTier;
|
||||
public static int CentrifugeTier;
|
||||
public static int ThermalGeneratorTier;
|
||||
|
||||
public static boolean FreqTransmitterChat;
|
||||
public static boolean FreqTransmitterTooltip;
|
||||
// EU/T
|
||||
public static int CloakingDeviceEUTick;
|
||||
// Crafting
|
||||
|
@ -356,6 +361,15 @@ public class ConfigTechReborn
|
|||
ThermalGeneratorTier = config
|
||||
.get(CATEGORY_POWER, "ThermalGenerator Tier", 1, "Set the Tier of the ThermalGenerator").getInt();
|
||||
|
||||
//Features
|
||||
FreqTransmitterChat = config
|
||||
.get(CATEGORY_FEATURES, "Frequency Transmitter Chat messages", true, "Allow Frequency Transmitter chat messages")
|
||||
.getBoolean(true);
|
||||
|
||||
FreqTransmitterTooltip = config
|
||||
.get(CATEGORY_FEATURES, "Frequency Transmitter tooltips", true, "Allow Frequency Transmitter to display tooltip info")
|
||||
.getBoolean(true);
|
||||
|
||||
// Crafting
|
||||
ExpensiveMacerator = config
|
||||
.get(CATEGORY_CRAFTING, "Expensive Macerator", true, "Allow TechReborn to change the Macerator recipe")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue