mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-11-19 08:14:52 +00:00
Fix hasTypeRemote not working with additional peripheral types.
Fixes #1001. Looks like the culprit was a simple typo.
This commit is contained in:
parent
e558b31b2b
commit
802949d888
@ -151,7 +151,7 @@ public abstract class WiredModemPeripheral extends ModemPeripheral implements IW
|
|||||||
public final Object[] hasTypeRemote( IComputerAccess computer, String name, String type )
|
public final Object[] hasTypeRemote( IComputerAccess computer, String name, String type )
|
||||||
{
|
{
|
||||||
RemotePeripheralWrapper wrapper = getWrapper( computer, name );
|
RemotePeripheralWrapper wrapper = getWrapper( computer, name );
|
||||||
return wrapper == null ? null : new Object[] { wrapper.getType().equals( type ) || wrapper.getAdditionalTypes().contains( getType() ) };
|
return wrapper == null ? null : new Object[] { wrapper.getType().equals( type ) || wrapper.getAdditionalTypes().contains( type ) };
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user