MAKE THE MONSTERS STATIONARY: To stop the monsters from moving, we will set their speed to zero. Open MazeGameSprites.py and find the line 'self.speed = 1' in the Monster class in the __init__ function. Change 1 to 0. MAKE THE MONSTERS FASTER: To increase the monsters' speed, open MazeGameSprites.py and find the line 'self.speed = 1' in the Monster class in the __init__ function. Change 1 to be any higher integer to make the monsters move faster. MAKE THE MONSTERS SLOWER: Unfortunately, we cannot make the monsters go any slower than a speed of 1. However, the game will appear easier if you increase the size of the game by increasing the size of the blocks (see increase-game-size.txt).