Skip to content

Commit

Permalink
ep13a: Spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
obiwac committed Aug 10, 2024
1 parent 955cba7 commit d349cb5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion episode-10/block_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Block_type:
self.shading_values = model.shading_values

def set_block_face(face, texture):
# make sure we don't add inexistent faces
# make sure we don't add nonexistent faces
if face > len(self.tex_coords) - 1:
return

Expand Down
2 changes: 1 addition & 1 deletion episode-11/block_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Block_type:
self.shading_values = model.shading_values

def set_block_face(face, texture):
# make sure we don't add inexistent faces
# make sure we don't add nonexistent faces
if face > len(self.tex_coords) - 1:
return

Expand Down
2 changes: 1 addition & 1 deletion episode-12/block_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class Block_type:
self.shading_values = model.shading_values

def set_block_face(face, texture):
# make sure we don't add inexistent faces
# make sure we don't add nonexistent faces

if face > len(self.tex_coords) - 1:
return
Expand Down
2 changes: 1 addition & 1 deletion episode-9/block_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Block_type:
self.shading_values = model.shading_values

def set_block_face(face, texture):
# make sure we don't add inexistent faces
# make sure we don't add nonexistent faces
if face > len(self.tex_coords) - 1:
return

Expand Down

0 comments on commit d349cb5

Please sign in to comment.