diff --git a/plugins/minigames.json b/plugins/minigames.json index b574ae31..932471cb 100644 --- a/plugins/minigames.json +++ b/plugins/minigames.json @@ -1694,7 +1694,7 @@ "external_url": "https://discord.gg/sQGDsztQcy", "authors": [ { - "name": "Mr.ghosty", + "name": "Mr.Paradox", "email": "", "discord": "gaurangbroyo" }, @@ -1705,6 +1705,12 @@ } ], "versions": { + "2.1.1": { + "api_version": 9, + "commit_sha": "5d7d222", + "released_on": "11-06-2026", + "md5sum": "d71b9615872ba3655a83166dd211ecd2" + }, "2.1.0": { "api_version": 9, "commit_sha": "0749053", @@ -1714,4 +1720,4 @@ } } } -} +} \ No newline at end of file diff --git a/plugins/minigames/vanishing_tiles.py b/plugins/minigames/vanishing_tiles.py index 5a02884f..5a75efeb 100644 --- a/plugins/minigames/vanishing_tiles.py +++ b/plugins/minigames/vanishing_tiles.py @@ -15,10 +15,10 @@ description="Tiles disappear gradually. Survive each round to continue. Last player standing wins!", external_url="https://discord.gg/sQGDsztQcy", authors=[ - {"name": "Mr.ghosty", "email": "", "discord": "gaurangbroyo"}, + {"name": "Mr.Paradox", "email": "", "discord": "gaurangbroyo"}, {"name": "senchx", "email": "", "discord": "senchx0"}, ], - version="2.1.0", + version="2.1.1", ) @@ -103,7 +103,7 @@ def on_begin(self) -> None: if self._show_credits: self._credit_node = bs.newnode('text', attrs={ - 'text': 'Made by Mr.Ghosty', + 'text': 'Made by Mr.Paradox', 'scale': 0.7, 'position': (0, 8), 'shadow': 0.8, 'flatness': 1.0, 'color': (1.0, 0.3, 0.8, 1.0), 'h_align': 'center', 'v_attach': 'bottom', }) @@ -403,14 +403,12 @@ def __init__(self) -> None: }) -bs._map.register_map(VanishingTilesMap) +try: + bs._map.register_map(VanishingTilesMap) +except Exception: + pass # ba_meta export babase.Plugin class Main(babase.Plugin): - def __init__(self) -> None: - babase.app.classic.add_coop_practice_level(bs.Level( - name='Vanishing Tiles', displayname='Vanishing Tiles', - gametype=VanishingTilesGame, settings={}, - preview_texture_name='powerupHealth', - )) + pass