Spider anzahl fixed
This commit is contained in:
@@ -20,13 +20,13 @@ public class TestWorld extends World {
|
|||||||
getCurrentMap().addAnimatedEntity(c);
|
getCurrentMap().addAnimatedEntity(c);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i = 0; i < 5; i++) {
|
for (int i = 0; i < 2; i++) {
|
||||||
Snake s = new Snake();
|
Snake s = new Snake();
|
||||||
s.setPosX((float) (Math.random() * 5 + 2));
|
s.setPosX((float) (Math.random() * 5 + 2));
|
||||||
getCurrentMap().addAnimatedEntity(s);
|
getCurrentMap().addAnimatedEntity(s);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i = 0; i < 20; i++) {
|
for (int i = 0; i < 3; i++) {
|
||||||
Spider spooda = new Spider();
|
Spider spooda = new Spider();
|
||||||
spooda.setPosX((float) (Math.random() * 5 + 2));
|
spooda.setPosX((float) (Math.random() * 5 + 2));
|
||||||
getCurrentMap().addAnimatedEntity(spooda);
|
getCurrentMap().addAnimatedEntity(spooda);
|
||||||
|
|||||||
Reference in New Issue
Block a user