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 52e1be7 commit 9555b93Copy full SHA for 9555b93
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