Typo Nextus

This commit is contained in:
thatsIch 2014-09-21 01:19:43 +02:00
parent 557e76787b
commit 4c5039c7da
3 changed files with 3 additions and 3 deletions

View file

@ -101,7 +101,7 @@ public class CraftingLink implements ICraftingLink
tag.setBoolean( "req", req != null );
}
public void setNextus(CraftingLinkNexus n)
public void setNexus(CraftingLinkNexus n)
{
if ( tie != null )
tie.remove( this );

View file

@ -112,7 +112,7 @@ public class CraftingLinkNexus
public void removeNode()
{
if ( req != null )
req.setNextus( null );
req.setNexus( null );
req = null;
tickOfDeath = 0;

View file

@ -158,7 +158,7 @@ public class CraftingGridCache implements ICraftingGrid, ICraftingProviderHelper
if ( n == null )
links.put( l.getCraftingID(), n = new CraftingLinkNexus( l.getCraftingID() ) );
l.setNextus( n );
l.setNexus( n );
}
@Override