mirror of
https://github.com/Freaku17/BombSquad-Mods-byFreaku
synced 2025-11-18 05:45:59 +00:00
Rename & Update unlock_TowerD.py to 1.7.37+ (API 9)
This commit is contained in:
parent
581a92472b
commit
5e531ef747
1 changed files with 2 additions and 2 deletions
19
Utilities/unlock_TowerD.py
Normal file
19
Utilities/unlock_TowerD.py
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
# 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 plugin
|
||||
class byFreaku(babase.Plugin):
|
||||
def on_app_running(self):
|
||||
TowerD.get_play_types = new_play_types
|
||||
Loading…
Add table
Add a link
Reference in a new issue