Disabled the base Retribution plugin in pretenseluagenerator.py and disabled adding zones for OffMapSpawns.

This commit is contained in:
MetalStormGhost
2023-09-16 20:12:00 +03:00
parent a975e2c2dc
commit a787cd4f70
2 changed files with 5 additions and 5 deletions

View File

@@ -212,14 +212,11 @@ class ConflictTheater:
for other_cp in control_points:
if cp == other_cp:
continue
print(f"{cp}: {other_cp} being evaluated...")
dist = other_cp.position.distance_to_point(cp.position)
print(f" {other_cp} is at {dist} meters")
distances_to_cp[dist] = other_cp
for i in sorted(distances_to_cp.keys()):
other_cp = distances_to_cp[i]
print(f" {other_cp} is at {i} meters")
if closest_cp is None:
closest_cp = other_cp
continue