sheep have 50% chance to jump every 2 state changes
This commit is contained in:
parent
6166c56f9c
commit
968603d54f
@ -180,10 +180,8 @@ public class DiscoParty {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (doJump) {
|
if (doJump) {
|
||||||
if (state % 4 == 0) {
|
if (state % 2 == 0) {
|
||||||
if ((state % 8 == 0) && (i % 2 == 0)) {
|
if (Math.random() < 0.5) {
|
||||||
jumpSheep(sheep);
|
|
||||||
} else if (i % 2 != 0) {
|
|
||||||
jumpSheep(sheep);
|
jumpSheep(sheep);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user