1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-09-10 06:15:59 +00:00

Fix redstone.getBundledInput(side) returning the output of said side.

This commit is contained in:
SkyTheCodeMaster
2021-02-05 14:10:11 -05:00
committed by Jummit
parent a65b8ed04c
commit 7fe3ac9222

View File

@@ -185,8 +185,9 @@ public class RedstoneAPI implements ILuaAPI {
* @see #testBundledInput To determine if a specific colour is set. * @see #testBundledInput To determine if a specific colour is set.
*/ */
@LuaFunction @LuaFunction
public final int getBundledInput(ComputerSide side) { public final int getBundledInput( ComputerSide side )
return this.environment.getBundledOutput(side); {
return environment.getBundledInput( side );
} }
/** /**