Skip to content

Commit

Permalink
Resolve merge conflict 6
Browse files Browse the repository at this point in the history
  • Loading branch information
bohcstams committed May 18, 2024
1 parent 9919e84 commit a06a7c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/hu/bomboclat/Graphics/Drawer.java
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ public void mouseClicked(MouseEvent e) {
else if(wantsToChange != null && first_option) {
in = getClosestField(e.getX(), e.getY());
first_option=false;
}
else if(wantsToChange != null && !first_option) {
}
else if(wantsToChange != null && !first_option) {
out = getClosestField(e.getX(), e.getY());
wantsToChange.ChangePump((Pipe)in, (Pipe)out);
wantsToChange=null;
Expand Down

0 comments on commit a06a7c9

Please sign in to comment.