summaryrefslogtreecommitdiff
path: root/mm/2s2h/SaveManager/Migrations/8.cpp
blob: 4d5f7b15fb1739ce7e25edb94f31bbadcc6c1aac (plain)
1
2
3
4
5
6
7
8
9
#include "2s2h/SaveManager/SaveManager.h"
#include "z64.h"

// Add Persistent Bunny Hood state to saves
void SaveManager_Migration_8(nlohmann::json& j) {
    if (!j["save"]["shipSaveInfo"].contains("persistentBunnyHood")) {
        j["save"]["shipSaveInfo"]["persistentBunnyHood"] = 0;
    }
}