-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '1.7/dev' into 1.7/release
Conflicts: gradle.properties
- Loading branch information
Showing
265 changed files
with
2,259 additions
and
2,418 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
mod_version=2.4.1 | ||
mod_version=CT2.5.0 | ||
minecraft_version=1.7.10 | ||
forge_version=10.13.4.1481-1.7.10 | ||
|
||
ctmlib_version=1.0.1.5 | ||
ccl_version=1.1.3.136 | ||
ccc_version=1.0.6.43 | ||
nei_version=1.0.4.107 | ||
ctmlib_version=1.2.0-10 | ||
ccl_version=1.1.3.140 | ||
ccc_version=1.0.7.46 | ||
nei_version=1.0.5.111 | ||
waila_version=1.5.10 | ||
fmp_version=1.2.0.344 | ||
|
||
projectId=225236 | ||
projectId=235279 |
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 +1 @@ | ||
rootProject.name = 'Chisel2' | ||
rootProject.name = 'Chisel' |
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
10 changes: 4 additions & 6 deletions
10
src/main/java/com/cricketcraft/chisel/api/IAdvancedChisel.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
26 changes: 26 additions & 0 deletions
26
src/main/java/com/cricketcraft/chisel/api/IConnectable.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package com.cricketcraft.chisel.api; | ||
|
||
import net.minecraft.world.IBlockAccess; | ||
|
||
/** | ||
* This extension of {@link IFacade} allows the block to say whether or not OTHER CTM blocks can connect to IT. | ||
*/ | ||
public interface IConnectable { | ||
|
||
/** | ||
* Determines whether other CTM blocks can connect to this one. | ||
* | ||
* @param world | ||
* @param x | ||
* The X position of the block that is connecting to this one. NOT the position of your block. | ||
* @param y | ||
* The Y position of the block that is connecting to this one. NOT the position of your block. | ||
* @param z | ||
* The Z position of the block that is connecting to this one. NOT the position of your block. | ||
* @param side | ||
* The side being drawn. | ||
* @return True if a block can connect to this one from the given direction. False otherwise. | ||
*/ | ||
boolean canConnectCTM(IBlockAccess world, int x, int y, int z, int side); | ||
|
||
} |
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.