Merge pull request #709 from SkyTheCodeMaster/patch-1

Fix `redstone.getBundledInput(side)` returning the output of said side.
This commit is contained in:
Jonathan Coates 2021-02-05 20:54:57 +00:00 committed by GitHub
commit 5e52429c23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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