Remove debug cruft.

We don't need to print the description of every unit on startup.

(cherry picked from commit 2ef2eafdd3d90b330825e206b4638c50c1b29b2c)
This commit is contained in:
Dan Albert 2021-07-01 19:37:08 -07:00
parent 3f8dfce9e0
commit c47750b2d9

View File

@ -57,7 +57,6 @@ class GroundUnitType(UnitType[VehicleType]):
def _load_all(cls) -> None:
for unit_type in cls._each_unit_type():
for data in cls._each_variant_of(unit_type):
print(data.name, data.description)
cls.register(data)
cls._loaded = True