-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename to Tinkers Compliment and fix config for release
- Loading branch information
1 parent
5638346
commit d2506c3
Showing
103 changed files
with
413 additions
and
313 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Knights' Construct | ||
# Tinkers' Compliment | ||
|
||
Knights' Construct is an addon for the Minecraft mod Tinkers' Construct which adds various compatibility features and features which otherwise did not fit in Tinkers' Construct itself. | ||
Tinkers' Compliment is an addon for the Minecraft mod Tinkers' Construct which adds various compatibility features and features which otherwise did not fit in Tinkers' Construct itself. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 0 additions & 14 deletions
14
src/main/java/knightminer/knightsconstruct/common/Config.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
.../knightsconstruct/common/ClientProxy.java → ...miner/tcompliment/common/ClientProxy.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../knightsconstruct/common/CommonProxy.java → ...miner/tcompliment/common/CommonProxy.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package knightminer.tcompliment.common; | ||
|
||
import net.minecraftforge.common.config.Configuration; | ||
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent; | ||
import slimeknights.mantle.pulsar.config.ForgeCFG; | ||
|
||
public class Config { | ||
|
||
public static ForgeCFG pulseConfig = new ForgeCFG("TinkersComplimentModules", "Modules"); | ||
|
||
public static float oreToIngotRatio = 1.0f; | ||
|
||
public static boolean blacklistMelterStone = false; | ||
|
||
static Configuration configFile; | ||
|
||
public static void load(FMLPreInitializationEvent event) { | ||
configFile = new Configuration(event.getSuggestedConfigurationFile(), "0.1", false); | ||
|
||
blacklistMelterStone = configFile.getBoolean("blacklistStone", "melter", true, | ||
"Disallows creating seared stone in the melter using cobblestone or tool parts"); | ||
|
||
oreToIngotRatio = configFile.getFloat("oreToIngotRatio", "melter", 1.0f, 0f, 16.0f, | ||
"Ratio of ore to material produced in the melter."); | ||
|
||
if(configFile.hasChanged()) { | ||
configFile.save(); | ||
} | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...miner/knightsconstruct/common/ModIds.java → ...nightminer/tcompliment/common/ModIds.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.