Typo Nextus
This commit is contained in:
parent
557e76787b
commit
4c5039c7da
3 changed files with 3 additions and 3 deletions
|
@ -101,7 +101,7 @@ public class CraftingLink implements ICraftingLink
|
||||||
tag.setBoolean( "req", req != null );
|
tag.setBoolean( "req", req != null );
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setNextus(CraftingLinkNexus n)
|
public void setNexus(CraftingLinkNexus n)
|
||||||
{
|
{
|
||||||
if ( tie != null )
|
if ( tie != null )
|
||||||
tie.remove( this );
|
tie.remove( this );
|
||||||
|
|
|
@ -112,7 +112,7 @@ public class CraftingLinkNexus
|
||||||
public void removeNode()
|
public void removeNode()
|
||||||
{
|
{
|
||||||
if ( req != null )
|
if ( req != null )
|
||||||
req.setNextus( null );
|
req.setNexus( null );
|
||||||
|
|
||||||
req = null;
|
req = null;
|
||||||
tickOfDeath = 0;
|
tickOfDeath = 0;
|
||||||
|
|
2
me/cache/CraftingGridCache.java
vendored
2
me/cache/CraftingGridCache.java
vendored
|
@ -158,7 +158,7 @@ public class CraftingGridCache implements ICraftingGrid, ICraftingProviderHelper
|
||||||
if ( n == null )
|
if ( n == null )
|
||||||
links.put( l.getCraftingID(), n = new CraftingLinkNexus( l.getCraftingID() ) );
|
links.put( l.getCraftingID(), n = new CraftingLinkNexus( l.getCraftingID() ) );
|
||||||
|
|
||||||
l.setNextus( n );
|
l.setNexus( n );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue