From 9b5353bdf2216db11451138285d690d9e0dc479a Mon Sep 17 00:00:00 2001
From: Felix Agner <felix.agner@control.lth.se>
Date: Mon, 13 Nov 2023 08:08:06 +0100
Subject: [PATCH] spelling errors

---
 README.md | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index 538945a..0f6797d 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@ python src/example.py
 which should start a game of Tank Wars. The base example has 5 example agents running the tanks. The first one is keyboard-driven (this will not be allowed later). It is controlled with `WASD` and shoots with `space`. Agents 2, 3 and 4 acts completely at random, drives to the right and drives to the left respectively. Agent 5 has a little bit of "intelligence", as it logs the location of the first agent (the keyboard-driven one) and tries to drive towards where it was a few seconds ago.
 
 ## Your task
-Your task is to create an agent, similar to the exaple agents in the `/src/agents` folder. Create a new file, e.g. `team1_agent.py` or some other fancy name. Create a class which extends the `Agent` class, and implements a function `action` which returns a tuple `(acceleration, turn_rate, fire)` which describes the action of the tank. More details on this below.
+Your task is to create an agent, similar to the example agents in the `/src/agents` folder. Create a new file, e.g. `team1_agent.py` or some other fancy name. Create a class which extends the `Agent` class, and implements a function `action` which returns a tuple `(acceleration, turn_rate, fire)` which describes the action of the tank. More details on this below.
 
 Once your file is done, send the whole python file to [felix.agner@control.lth.se](mailto:felix.agner@control.lth.se), along with information on any packages required to run your agent, and any external file your agent may need to run.
 
@@ -29,12 +29,11 @@ During the design phase of the competition, there are no rules. You may use any
 ## The competition
 Depending on the number of teams, we will pitch three to four tanks against each other in a first round. Then the best tanks from these rounds will move on to the finals. The finals will be a free-for-all, where the last tank standing wins.
 
-If your agent either
+You will be disqualified if your agent either
 1. causes an error in the game,
 2. influences the parameters of the game or other tanks (e.g. by changing the parameters in the game environment),
 3. causes the game to run unreasonably slow or
-4. takes human input during run-time
-you will be disqualified.
+4. takes human input during run-time.
 
 ## Tanks and projectiles
 
-- 
GitLab