diff --git a/WorldHandler.cpp b/WorldHandler.cpp index 08f9ba0..0b3fe21 100644 --- a/WorldHandler.cpp +++ b/WorldHandler.cpp @@ -126,6 +126,7 @@ void WorldHandler::NextWorld() if (!loadingWorld) { ChangeWorld(worldIndex + 1); + Player::getInstance()->crystals = 0; } } @@ -134,5 +135,6 @@ void WorldHandler::PreviousWorld() if (!loadingWorld) { ChangeWorld(worldIndex - 1); + Player::getInstance()->crystals = 0; } } \ No newline at end of file