Skip to content

Commit 331121a

Browse files
committedDec 14, 2015
The great refactorisining!
Added module items. Added documentation to modules. Added config options. Added recipes.
1 parent 0f5ad0c commit 331121a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+394
-86
lines changed
 

Diff for: ‎changelog.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
==== 1.6.1 ====
22

3+
* ADDED: Support for TIS-3D!
4+
- Added a Colorful Module to display any colour you want, akin to a Colorful Lamp.
5+
- Added a Tape Reader Module which allows you to interface with an adjacent Tape Drive.
6+
- Documented everything in the TIS-3D manual.
7+
- Each module can be individually disabled in the config file.
38
* FIXED: Crash when the `openComputersBees` config option was set to `false`.
49

510
==== 1.6.0 ====

Diff for: ‎src/main/java/pl/asie/computronics/Computronics.java

+4
Original file line numberDiff line numberDiff line change
@@ -358,6 +358,10 @@ public void postInit(FMLPostInitializationEvent event) {
358358
ActionProvider.initialize();
359359
StatementParameters.initialize();
360360
}
361+
362+
if(Mods.isLoaded(Mods.TIS3D) && tis3D != null) {
363+
tis3D.postInit();
364+
}
361365
}
362366

363367
@EventHandler

0 commit comments

Comments
 (0)
Please sign in to comment.