Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix typos found by codespell
  • Loading branch information
cclauss authored Jan 19, 2020
commit 8130c5d1c4127bfe6e24c4b6480131cafb7be90c
4 changes: 2 additions & 2 deletions sc2reader/engine/plugins/creeptracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def __init__(self, replay):
self.creep_spread_image_by_minute = dict()
## This list contains all the active cgus in every time frame
self.creep_gen_units = dict()
## Thist list corresponds to creep_gen_units storing the time of each CGU
## This list corresponds to creep_gen_units storing the time of each CGU
self.creep_gen_units_times = dict()
## convert all possible cgu radii into a sets of coordinates centred around the origin,
## in order to use this with the CGUs, the centre point will be
Expand Down Expand Up @@ -168,7 +168,7 @@ def radius_to_map_positions(self, radius):
## this function converts all radius into map coordinates
## centred around the origin that the creep can exist
## the cgu_radius_to_map_position function will simply
## substract every coordinate with the centre point of the tumour
## subtract every coordinate with the centre point of the tumour
output_coordinates = list()
# Sample a square area using the radius
for x in range(-radius, radius):
Expand Down