mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-09-04 19:37:55 +00:00
Fix redstone.getBundledInput(side)
returning the output of said side.
This commit is contained in:
@@ -185,8 +185,9 @@ public class RedstoneAPI implements ILuaAPI {
|
||||
* @see #testBundledInput To determine if a specific colour is set.
|
||||
*/
|
||||
@LuaFunction
|
||||
public final int getBundledInput(ComputerSide side) {
|
||||
return this.environment.getBundledOutput(side);
|
||||
public final int getBundledInput( ComputerSide side )
|
||||
{
|
||||
return environment.getBundledInput( side );
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user