2023-07-28 17:03:36 +05:30
|
|
|
# Made by your friend: Freaku
|
2022-08-30 16:32:34 +05:30
|
|
|
|
|
|
|
|
|
2023-07-28 17:03:36 +05:30
|
|
|
import babase
|
|
|
|
|
import bascenev1 as bs
|
|
|
|
|
from bascenev1lib.maps import TowerD
|
2022-08-30 16:32:34 +05:30
|
|
|
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
def new_play_types(cls):
|
|
|
|
|
"""return valid play types for this map."""
|
|
|
|
|
return ['melee', 'keep_away', 'team_flag', 'king_of_the_hill']
|
|
|
|
|
|
|
|
|
|
|
2025-01-15 03:15:53 +05:30
|
|
|
# ba_meta require api 9
|
2025-06-24 00:55:09 +05:30
|
|
|
# ba_meta export babase.Plugin
|
2023-07-28 17:03:36 +05:30
|
|
|
class byFreaku(babase.Plugin):
|
2022-08-30 16:32:34 +05:30
|
|
|
def on_app_running(self):
|
2023-07-28 11:37:09 +00:00
|
|
|
TowerD.get_play_types = new_play_types
|