diff --git a/source/component/map.py b/source/component/map.py index 8b5db6e..89bbdee 100755 --- a/source/component/map.py +++ b/source/component/map.py @@ -412,7 +412,7 @@ LITTLE_GAME_MAP_DATA = ( c.SPIKEWEED: 100, c.SQUASH: 100, c.JALAPENO: 50, - c.THREEPEASHOOTER: 400,} + c.THREEPEASHOOTER: 300,} }, ) diff --git a/source/component/plant.py b/source/component/plant.py index d0f4ebc..ae3cb6b 100755 --- a/source/component/plant.py +++ b/source/component/plant.py @@ -322,7 +322,7 @@ class Plant(pg.sprite.Sprite): if (zombie.name == c.SNORKELZOMBIE) and (zombie.frames == zombie.swim_frames): return False if (self.state != c.SLEEP and zombie.state != c.DIE and - self.rect.x <= zombie.rect.right and zombie.rect.x <= c.SCREEN_WIDTH): + self.rect.x <= zombie.rect.right and zombie.rect.x <= c.SCREEN_WIDTH - 24): return True return False