Skip to content

Commit

Permalink
Merge branch 'mc-1.13.x' into mc-1.14-fabric
Browse files Browse the repository at this point in the history
  • Loading branch information
SquidDev committed Jun 2, 2019
2 parents 725dfa7 + b6715bd commit 45e84e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public TurtleMultiModel( BakedModel baseModel, BakedModel overlayModel, Matrix4f

@Nonnull
@Override
public List<BakedQuad> getQuads( BlockState state, Direction side, Random rand )
public List<BakedQuad> getQuads( BlockState state, Direction side, @Nonnull Random rand )
{
if( side != null )
{
Expand Down
3 changes: 3 additions & 0 deletions src/main/resources/data/computercraft/lua/rom/apis/keys.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
-- they relied on Minecraft's character mappings. However, if CC emulators have
-- taught me anything, it's that emulating LWJGL's weird key handling is nigh-on
-- impossible.

local expect = _G["~expect"]

local tKeys = {}
tKeys[32] = 'space'
tKeys[39] = 'apostrophe'
Expand Down

0 comments on commit 45e84e1

Please sign in to comment.