mirror of
				https://github.com/IntellectualSites/PlotSquared.git
				synced 2025-11-04 03:03:43 +01:00 
			
		
		
		
	fix: do not create south road twice on unlink (#4713)
- this was changed from else if to if in 7623698a00 (diff-b05df598e90ce5418467b07e84ef85a80be8bac7c70929063ace9ede4d5cf52eL1000) (for unknown reason)
 - fixes #4704
			
			
This commit is contained in:
		@@ -371,8 +371,7 @@ public final class PlotModificationManager {
 | 
				
			|||||||
                            manager.createRoadSouthEast(current, queue);
 | 
					                            manager.createRoadSouthEast(current, queue);
 | 
				
			||||||
                        }
 | 
					                        }
 | 
				
			||||||
                    }
 | 
					                    }
 | 
				
			||||||
                }
 | 
					                } else if (current.isMerged(Direction.SOUTH)) {
 | 
				
			||||||
                if (current.isMerged(Direction.SOUTH)) {
 | 
					 | 
				
			||||||
                    manager.createRoadSouth(current, queue);
 | 
					                    manager.createRoadSouth(current, queue);
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user