Skip to content

Commit

Permalink
remove empy bullet point
Browse files Browse the repository at this point in the history
  • Loading branch information
otizonaizit committed Aug 20, 2024
1 parent e6d7bc0 commit 0318a17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ Note that the `Bot` object is read-only, i.e. any modifications you make to that
- **`bot.enemy[0].food`** is the list of coordinates of the food pellets you want to eat.
- **`bot.enemy[0].team_name`** you can also inspect the enemy team name with `bot.enemy[0].team_name`.
-
- **`bot.enemy[0].team_time`** you can also inspect the accumulated time that the enemy has used so far.
- **`bot.enemy[0].is_noisy`** <a id="is-noisy"></a> your bot has a sight-radius of 5 squares. This means that when an enemy bot is located more than 5 squares away from your bot, `bot.enemy[0].position` will not be exact and `bot.enemy[0].is_noisy` will be `True`. The sight-radius for red bot `y` is the red area in the picture below. Red bot `y` will see the exact position of blue bot `a`, because it falls into its sight-radius. Instead, red bot `y` will see blue bot `b` as if it were located in one random legal position up to 5 squares away from its true position. An example of using the `is_noisy` property is given in [demo05_basic_defender.py](demo05_basic_defender.py).
Expand Down

0 comments on commit 0318a17

Please sign in to comment.