Skip to content

Commit

Permalink
Fix VerifyError with new AE patch.
Browse files Browse the repository at this point in the history
Signed-off-by: Ross Allan <rallanpcl@gmail.com>
  • Loading branch information
LunNova committed Jul 11, 2013
1 parent afb05fc commit fa0327b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/patches-deobfuscated.xml
Expand Up @@ -1529,8 +1529,8 @@
if ($1 != null) {
Iterator i = $1.iterator();
while (i.hasNext()) {
appeng.api.TileRef tr = i.next();
^class:TileEntity^ tile = tr.getTile();
appeng.me.GridEnumeration$NetworkNode tr = (appeng.me.GridEnumeration$NetworkNode) i.next();
^class:TileEntity^ tile = (^class:TileEntity^) tr.getTile();
if (tile != this &amp;&amp; tile != null &amp;&amp; tile.^method:TileEntity/canUpdate^()) {
tiles.add(tile);
}
Expand Down

0 comments on commit fa0327b

Please sign in to comment.