From 6c0805fd6f32a0878a9f11150f85e2764219181a Mon Sep 17 00:00:00 2001 From: Khalid Rahal <67649246+komasio71@users.noreply.github.com> Date: Mon, 7 Apr 2025 22:46:20 +0100 Subject: [PATCH] Just some corrections in README.md "Bombsquad" to "BombSquad" If anyone sees any other errors, fix them, I really care about autograph a lot :-) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5a46f75..47d81ea 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [![CI](https://github.com/bombsquad-community/plugin-manager/actions/workflows/ci.yml/badge.svg)](https://github.com/bombsquad-community/plugin-manager/actions/workflows/ci.yml) -**Important:** If you are on bombsquad version less than 1.7.37 , check below. +**Important:** If you are on BombSquad version less than 1.7.37 , check below. - for version 1.7.0 to 1.7.19 (which uses API 7), checkout the [api7](https://github.com/bombsquad-community/plugin-manager/tree/api7) branch. - for version 1.7.20 to 1.7.36 (which uses API 8), checkout the [api8](https://github.com/bombsquad-community/plugin-manager/tree/api8) branch. @@ -10,7 +10,7 @@ If you have version 1.7.37 or greater (which uses API 9), proceed with the rest # Plugin Manager -A plugin manager for the game - [Bombsquad](https://www.froemling.net/apps/bombsquad). Plugin Manager is a plugin in itself, +A plugin manager for the game - [BombSquad](https://www.froemling.net/apps/bombsquad). Plugin Manager is a plugin in itself, which makes further modding of your game more convenient by providing easier access to community created content. [![DownloadIcon]][DownloadLink] @@ -43,7 +43,7 @@ There are two different ways the plugin manager can be installed: 1. From dev console - - Enable "Show Dev Console Button" from advance bombsquad settings + - Enable "Show Dev Console Button" from advance BombSquad settings - Paste the following code in dev console ```py import urllib.request;import _babase;import os;url="https://github.com/bombsquad-community/plugin-manager/releases/latest/download/plugin_manager.py";plugin_path=os.path.join(_babase.env()["python_directory_user"],"plugin_manager.py");file=urllib.request.urlretrieve(url)[0];fl = open(file,'r');f=open(plugin_path, 'w+');f.write(fl.read());fl.close();f.close();print("SUCCESS")