Skip to content

Commit 661052e

Browse files
committed
Fix unitialized value which prevents meditations from solving
Followup to commit d6afe69, which have not properly fixed the problem, which is easily reproducible on FreeBSD/clang.
1 parent 0027b3b commit 661052e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/items/Meditation.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ namespace enigma {
2727

2828
Meditation::Meditation(int initState) {
2929
state = initState;
30-
//whiteball = NULL;
30+
whiteball = NULL;
3131
}
3232

3333
std::string Meditation::getClass() const {

0 commit comments

Comments
 (0)