bombsquad-plugin-manager/plugins/utilities/unlock_TowerD.py
2025-06-24 00:55:09 +05:30

19 lines
426 B
Python

# Made by your friend: Freaku
import babase
import bascenev1 as bs
from bascenev1lib.maps import TowerD
@classmethod
def new_play_types(cls):
"""return valid play types for this map."""
return ['melee', 'keep_away', 'team_flag', 'king_of_the_hill']
# ba_meta require api 9
# ba_meta export babase.Plugin
class byFreaku(babase.Plugin):
def on_app_running(self):
TowerD.get_play_types = new_play_types