1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2024-09-28 15:08:47 +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 GitHub
parent 1316d6a3c9
commit 396cf15a1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -191,7 +191,7 @@ public class RedstoneAPI implements ILuaAPI
@LuaFunction @LuaFunction
public final int getBundledInput( ComputerSide side ) public final int getBundledInput( ComputerSide side )
{ {
return environment.getBundledOutput( side ); return environment.getBundledInput( side );
} }
/** /**