diff options
| author | Unknown <shekwancheung0528@gmail.com> | 2019-01-04 21:47:38 +0800 |
|---|---|---|
| committer | Unknown <shekwancheung0528@gmail.com> | 2019-01-04 21:47:38 +0800 |
| commit | be6a22cb24b833612100ff4224800e90903b9035 (patch) | |
| tree | 347a279b7a214c37adc1e0f12e139fab03ac61d4 /src/main/java/me/shedaniel/gui/RecipeGui.java | |
| parent | 1d784f5e534fe352f0c93ee2e295a777a3f5f0fb (diff) | |
| download | RoughlyEnoughItems-be6a22cb24b833612100ff4224800e90903b9035.tar.gz RoughlyEnoughItems-be6a22cb24b833612100ff4224800e90903b9035.tar.bz2 RoughlyEnoughItems-be6a22cb24b833612100ff4224800e90903b9035.zip | |
fixes esc and crashes
Diffstat (limited to 'src/main/java/me/shedaniel/gui/RecipeGui.java')
| -rwxr-xr-x | src/main/java/me/shedaniel/gui/RecipeGui.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/me/shedaniel/gui/RecipeGui.java b/src/main/java/me/shedaniel/gui/RecipeGui.java index bee43415b..cf2c87572 100755 --- a/src/main/java/me/shedaniel/gui/RecipeGui.java +++ b/src/main/java/me/shedaniel/gui/RecipeGui.java @@ -220,7 +220,7 @@ public class RecipeGui extends ContainerGui { @Override public boolean keyPressed(int p_keyPressed_1_, int p_keyPressed_2_, int p_keyPressed_3_) { - if (p_keyPressed_1_ == 259 && prevScreen != null && REIRenderHelper.focusedControl == null) { + if (p_keyPressed_1_ == 256 && prevScreen != null) { this.client.openGui(prevScreen); return true; } |
