diff options
Diffstat (limited to '')
-rw-r--r-- | src/base/UGraphicClasses.pas | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/base/UGraphicClasses.pas b/src/base/UGraphicClasses.pas index 55d91e39..3e2ed642 100644 --- a/src/base/UGraphicClasses.pas +++ b/src/base/UGraphicClasses.pas @@ -718,6 +718,10 @@ begin begin Life := RandomRange(8,16); Spawn(RandomRange(Left,Right), RandomRange(Top,Bottom), cScreen, Life, 16-Life, -1, PerfectLineTwinkle, P); + + //spawn also on second screen if the amount of players is <=3 + if (Screens = 2) and (PlayersPlay <= 3) then + Spawn(RandomRange(Left,Right), RandomRange(Top,Bottom), 2, Life, 16-Life, -1, PerfectLineTwinkle, P); end; end; end; |