Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/block.py
diff options
context:
space:
mode:
Diffstat (limited to 'block.py')
-rw-r--r--block.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/block.py b/block.py
index 530ce2e..bd86157 100644
--- a/block.py
+++ b/block.py
@@ -31,9 +31,9 @@ import sprites
# A class for the list of blocks and everything they share in common
#
class Blocks:
- def __init__(self, sprites):
+ def __init__(self, sprite_list):
self.list = []
- self.sprites = sprites
+ self.sprites = sprite_list
def get_block(self, i):
if i < 0 or i > len(self.list)-1: