Skip to content

Commit

Permalink
Merge pull request #23 from peyang-Celeron/master
Browse files Browse the repository at this point in the history
bug fixed
  • Loading branch information
PeyaPeyaPeyang authored Mar 23, 2020
2 parents bc646f8 + 671c894 commit ab48325
Show file tree
Hide file tree
Showing 10 changed files with 1 addition and 1 deletion.
Binary file modified .gradle/4.8.1/fileContent/annotation-processors.bin
Binary file not shown.
Binary file modified .gradle/4.8.1/fileContent/fileContent.lock
Binary file not shown.
Binary file modified .gradle/4.8.1/fileHashes/fileHashes.bin
Binary file not shown.
Binary file modified .gradle/4.8.1/fileHashes/fileHashes.lock
Binary file not shown.
Binary file modified .gradle/4.8.1/fileHashes/resourceHashesCache.bin
Binary file not shown.
Binary file modified .gradle/4.8.1/taskHistory/taskHistory.bin
Binary file not shown.
Binary file modified .gradle/4.8.1/taskHistory/taskHistory.lock
Binary file not shown.
Binary file modified .gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
Binary file modified .gradle/buildOutputCleanup/outputFiles.bin
Binary file not shown.
2 changes: 1 addition & 1 deletion src/main/java/ml/peya/mc/Events.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class Events
public void onKeyEvent(InputEvent.KeyInputEvent e)
{
Minecraft mc = Minecraft.getMinecraft();
if (!(PeyangMcBansLookuper.lookupKeys.isPressed() || Facing.isFacingPlayer(mc)))
if (!PeyangMcBansLookuper.lookupKeys.isPressed() || !Facing.isFacingPlayer(mc))
return;
String name = Facing.getFacingPlayerName(mc);
if (!name.equals(""))
Expand Down

0 comments on commit ab48325

Please sign in to comment.