We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5a2d1a commit ab84481Copy full SHA for ab84481
src/objects/challenges.md
@@ -34,7 +34,7 @@ class Broom {
34
class Witch {
35
Object pullFromHat() {
36
double r = Math.random();
37
- if (Math.random() < 0.25) {
+ if (r < 0.25) {
38
return new Spell("Ensmallen");
39
}
40
else if (r < 0.5) {
0 commit comments