mirror of
https://github.com/bombsquad-community/plugin-manager.git
synced 2025-10-08 14:54:36 +00:00
19 lines
No EOL
418 B
Python
19 lines
No EOL
418 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 8
|
|
# ba_meta export plugin
|
|
class byFreaku(babase.Plugin):
|
|
def on_app_running(self):
|
|
TowerD.get_play_types = new_play_types |