Compare commits
No commits in common. "506930b67ead55730c46a747999f34a29b28573c" and "25e06de9ad3daccef0fad6eab6eecee77941c413" have entirely different histories.
506930b67e
...
25e06de9ad
@ -20,11 +20,11 @@ pip install pygame
|
|||||||
### With Linux/Unix
|
### With Linux/Unix
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pyinstaller --onefile --noconsole launcher.py --add-data "gamedata:gamedata" --icon=icon.ico
|
pyinstaller --onefile --noconsole launcher.py --add-data "gamedata:gamedata" --icon icon.png
|
||||||
```
|
```
|
||||||
|
|
||||||
### With Windows
|
### With Windows
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pyinstaller --onefile --noconsole launcher.py --add-data "gamedata;gamedata" --icon=icon.ico
|
pyinstaller --onefile --noconsole launcher.py --add-data "gamedata;gamedata" --icon icon.png
|
||||||
```
|
```
|
||||||
|
@ -75,7 +75,6 @@ class Manager(BaseObject):
|
|||||||
self.game.globals["pause"] = not self.game.globals["pause"]
|
self.game.globals["pause"] = not self.game.globals["pause"]
|
||||||
# Spawning more lemmings
|
# Spawning more lemmings
|
||||||
if (self.lives>0 and nblemmings>0):
|
if (self.lives>0 and nblemmings>0):
|
||||||
if not self.game.globals["pause"]:
|
|
||||||
if self.spawntimer.tick(self.game.dt):
|
if self.spawntimer.tick(self.game.dt):
|
||||||
self.game.gameloop.summon(Spawner(self.game,self.tiles,speedmargin=int(self.speedmargin+0.5),skins=self.skins))
|
self.game.gameloop.summon(Spawner(self.game,self.tiles,speedmargin=int(self.speedmargin+0.5),skins=self.skins))
|
||||||
self.speedmargin+=self.speedstep
|
self.speedmargin+=self.speedstep
|
||||||
|
Loading…
x
Reference in New Issue
Block a user