Skip to content

Commit

Permalink
Fix ghost ingredient target and hover missing alpha values (#1985)
Browse files Browse the repository at this point in the history
  • Loading branch information
pupnewfster committed Jun 21, 2020
1 parent 4864ccd commit 1c9a063
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/mezz/jei/gui/ghost/GhostIngredientDrag.java
Expand Up @@ -16,8 +16,8 @@
import org.lwjgl.opengl.GL11;

public class GhostIngredientDrag<T> {
private static final int targetColor = 0x13C90A;
private static final int hoverColor = 0x4CC919;
private static final int targetColor = 0x4013C90A;
private static final int hoverColor = 0x804CC919;

private final IGhostIngredientHandler<?> handler;
private final List<Target<T>> targets;
Expand Down

0 comments on commit 1c9a063

Please sign in to comment.