diff --git a/0.5 Controlling Program Flow.ipynb b/0.5 Controlling Program Flow.ipynb index cc7c91f..812706d 100644 --- a/0.5 Controlling Program Flow.ipynb +++ b/0.5 Controlling Program Flow.ipynb @@ -14,7 +14,7 @@ "\n", "## Sequential\n", "\n", - "This is the most basic way of controlling the order of statements, and the one we've already been moving. It just means that normally statements will be run from top to bottom unless something changes the flow." + "This is the most basic way of controlling the order of statements, and the one we've already been using. It just means that normally statements will be run from top to bottom unless something changes the flow." ] }, { diff --git a/1.2 Project Setup.ipynb b/1.2 Project Setup.ipynb index 894ef36..f130630 100644 --- a/1.2 Project Setup.ipynb +++ b/1.2 Project Setup.ipynb @@ -54,9 +54,9 @@ "\n", "```\n", "#Windows\n", - "./Scripts/activate.ps1\n", + "./bin/activate.ps1\n", "#Mac or Linux\n", - "source /Scripts/activate\n", + "source /bin/activate\n", "```\n", "\n", "If you get `Scripts\\Activate.ps1 cannot be loaded because running scripts is disabled on this system.` error you can run `Set-ExecutionPolicy RemoteSigned`. Keep in mind this makes your system slightly less secure- make sure not to run random PowerShell scripts you've downloaded. ;)\n", @@ -65,7 +65,7 @@ "Now that we have a seperate environment there are a couple of packages that we'll need for this project. `pip install {package name}` is the command we need to run. We can add multiple packages by listing them with spaces in between.\n", "\n", "```\n", - "pip install python-dotenv discord.py discord-py-interactions\n", + "pip install python-dotenv discord-py-interactions\n", "```\n", "\n", "If you get the error 'Fatal error in launcher: Unable to create process using.....' try running `python -m pip install --upgrade pip`\n", diff --git a/Bot/game.py b/Bot/game.py index 038f9f7..4800339 100644 --- a/Bot/game.py +++ b/Bot/game.py @@ -18,7 +18,6 @@ def get_player(self, player_id): def create_encounter(self, player_id): encounter = self.encounters.get(player_id) - print(encounter) if encounter: return f"""Current Status: Player HP: {self.players[player_id].current_hp} diff --git a/README.md b/README.md index fb215d5..5dca7f4 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Into to Python -## Healthy Gamer Discord 2022 +## Healthy Gamer Discord ## Project Structure