Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
Diff: Alien/Alien.cpp
- Revision:
- 19:43de9fd725ba
- Parent:
- 18:828e9f6ddfdb
- Child:
- 20:0b6f1cfc5be6
--- a/Alien/Alien.cpp Fri May 01 14:44:08 2020 +0000 +++ b/Alien/Alien.cpp Fri May 01 14:46:10 2020 +0000 @@ -57,9 +57,11 @@ void Alien::flag_set(int counter){ int c = counter; - if(c%7 == 1){ + int r = rand()%10; + if(r < 3) { Shoot = true; + } } }