Skip to content

Commit

Permalink
0.9.0 - actadd integration
Browse files Browse the repository at this point in the history
  • Loading branch information
XDjackieXD committed Aug 30, 2016
1 parent 503044a commit 3324b1a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ apply plugin: 'idea'
apply plugin: 'net.minecraftforge.gradle.forge'


version = "0.8.1-MC1.9.4"
version = "0.9.0-MC1.9.4"
group = "at.chaosfield.openradio"
archivesBaseName = "OpenRadio"

Expand Down Expand Up @@ -44,7 +44,7 @@ repositories {

dependencies {
compile "li.cil.oc:OpenComputers:MC1.9.4-1.6.+:api"
compile "de.ellpeck.actuallyadditions:ActuallyAdditions-unstable:1.10.2-r56-16:api"
provided "de.ellpeck.actuallyadditions:ActuallyAdditions:1.10.2-r60:api"

//no 1.9 version of ae yet :(
//compile "appeng:appliedenergistics2:rv2-stable-10:dev"
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/at/chaosfield/openradio/OpenRadio.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* Created by Jakob Riepler (XDjackieXD)
*/

@Mod(name = "Open Radio", modid = OpenRadio.MODID, version = "0.8.1", modLanguage = "java", dependencies = "required-after:OpenComputers@[1.6.0,)")
@Mod(name = "Open Radio", modid = OpenRadio.MODID, version = "0.9.0", modLanguage = "java", dependencies = "required-after:OpenComputers@[1.6.0,)")
public class OpenRadio{

public static final String MODID = "openradio";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ private void connectLaserRelays(LaserTileEntity laser){
if(((LaserTileEntity) tile).isConnected())
for(ILaserAddon addon : ((LaserTileEntity) tile).getAddons())
if(addon != null && addon.getAddonName().equals(this.addonName) && addon.getTile() != null)
ActuallyAdditionsAPI.connectionHandler.addConnection(this.laserRelayTile.getPos(), addon.getTile().getPos(), laser.getWorld(), false);
ActuallyAdditionsAPI.connectionHandler.addConnection(this.laserRelayTile.getPos(), addon.getTile().getPos(), laser.getWorld(), true);
}
}
}
Expand Down

0 comments on commit 3324b1a

Please sign in to comment.