blastfurnace: Use border color for clickbox overlay fills (#12379)

Previously, all clickbox overlays had a red tint, even if the border was
green symbolizing a "good" state.
This commit is contained in:
Martin H
2020-08-27 00:25:49 +02:00
committed by GitHub
parent a918c5955f
commit 22ec9e52b5

View File

@@ -111,7 +111,7 @@ class BlastFurnaceClickBoxOverlay extends Overlay
graphics.setColor(color);
}
graphics.draw(objectClickbox);
graphics.setColor(new Color(0xFF, 0, 0, 20));
graphics.setColor(new Color(color.getRed(), color.getGreen(), color.getBlue(), 20));
graphics.fill(objectClickbox);
}
}