Skip to content

Commit

Permalink
Fixed Lightningrod not connecting on North and South sides
Browse files Browse the repository at this point in the history
  • Loading branch information
BluSunrize committed Apr 29, 2016
1 parent 0bfdda1 commit 4aff90b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
- fixed mobs spawning on conveyor belts
- fixed assembler outputting stuff that should have stayed inside
- fixed a lighting bug with Fastcraft
- fixed the lightning rod not connecting on north+south sides

#####Version 0.7.5 - BUILT
- shoutouts to malte for excellent maintenance once again =3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public boolean receiveClientEvent(int id, int arg)
@Override
public boolean canConnectEnergy(ForgeDirection from)
{
ForgeDirection fd = pos==1?ForgeDirection.NORTH: pos==7?ForgeDirection.SOUTH: pos==3?ForgeDirection.EAST: ForgeDirection.WEST;
ForgeDirection fd = pos==1?ForgeDirection.SOUTH: pos==7?ForgeDirection.NORTH: pos==3?ForgeDirection.EAST: ForgeDirection.WEST;
return from==fd.getOpposite();
}

Expand Down

0 comments on commit 4aff90b

Please sign in to comment.