Skip to content

Commit

Permalink
Fix checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueSoapTurtle committed Oct 29, 2024
1 parent 018bf3c commit cbdb0f5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public MasteringMixologyPanel(Client client, MasteringMixologyPlugin plugin, Mas
@Override
public Dimension render(Graphics2D graphics) {
// Hide the overlay if conditions are not met
if (!plugin.isInLabRegion() || !config.displayPanel() || (!config.showPanelInLab() && plugin.isInLab())) {
if (!plugin.isInLabRegion() || !config.displayPanel() || !config.showPanelInLab() && plugin.isInLab()) {
return null;
}

Expand Down

0 comments on commit cbdb0f5

Please sign in to comment.