Skip to content

Commit

Permalink
Merge pull request Enigma-Game#6 from AMDmi3/patch-1
Browse files Browse the repository at this point in the history
Fix unitialized value which prevents meditations from solving
  • Loading branch information
raoulb authored Nov 14, 2016
2 parents 2aaa39e + 661052e commit a56933b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/items/Meditation.cc
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ namespace enigma {

Meditation::Meditation(int initState) {
state = initState;
//whiteball = NULL;
whiteball = NULL;
}

std::string Meditation::getClass() const {
Expand Down

0 comments on commit a56933b

Please sign in to comment.