Unverified Commit bab6ea6b authored by AUTOMATIC1111's avatar AUTOMATIC1111 Committed by GitHub
Browse files

Merge pull request #5340 from PhytoEpidemic/master

Fix divide by 0 error
parents b2f17dd3 119a945e
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -276,8 +276,8 @@ def poi_average(pois, settings):
        weight += poi.weight
        x += poi.x * poi.weight
        y += poi.y * poi.weight
    avg_x = round(x / weight)
    avg_y = round(y / weight)
    avg_x = round(weight and x / weight)
    avg_y = round(weight and y / weight)

    return PointOfInterest(avg_x, avg_y)