Skip to content
This repository was archived by the owner on Apr 7, 2019. It is now read-only.

Commit 25d11e3

Browse files
committed
Fix for ambiguity
1 parent c654541 commit 25d11e3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ version_revis=0
44
archivebase=BasicIndustry
55
groupid=basicindustry
66
org=builtbroken
7-
voltz_engine_version=0.26.0
7+
voltz_engine_version=0.28.0
88
startGitRev=72f7069

src/main/java/com/builtbroken/industry/content/power/wires/TileWire.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ else if (hasWireConnection(dir))
8585
@Override
8686
public boolean refreshConnections()
8787
{
88-
final Pos center = new Pos(this);
88+
final Pos center = new Pos((TileEntity)this);
8989

9090
//IF we do not have a grid, find or make one
9191
if (getGrid() == null)
@@ -111,7 +111,7 @@ public boolean refreshConnections()
111111

112112
private void findOrMakeGrid()
113113
{
114-
final Pos center = new Pos(this);
114+
final Pos center = new Pos((TileEntity)this);
115115
//Look for an existing network
116116
for (ForgeDirection direction : ForgeDirection.VALID_DIRECTIONS)
117117
{

0 commit comments

Comments
 (0)