Fixing a bit

This commit is contained in:
Vishal 2025-01-18 00:35:07 +05:30 committed by GitHub
parent 692ee04db0
commit 17609e68ae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,29 +14,29 @@ from bascenev1lib.gameutils import SharedObjects
if TYPE_CHECKING:
from typing import Any
ALL_MAPS = [
HockeyStadium,
FootballStadium,
Bridgit,
BigG,
Roundabout,
MonkeyFace,
ZigZag,
ThePad,
DoomShroom,
LakeFrigid,
TipTop,
CragCastle,
TowerD,
HappyThoughts,
StepRightUp,
Courtyard,
Rampage,
]
def register_all_maps():
for maptype in ALL_MAPS:
bascenev1.register_map(maptype)
def register_all_maps() -> None:
for maptype in [
HockeyStadium,
FootballStadium,
Bridgit,
BigG,
Roundabout,
MonkeyFace,
ZigZag,
ThePad,
DoomShroom,
LakeFrigid,
TipTop,
CragCastle,
TowerD,
HappyThoughts,
StepRightUp,
Courtyard,
Rampage,
]:
bs.register_map(maptype)
class HockeyStadium(bs.Map):
"""Stadium map used for ice hockey games."""