diff --git a/src/Etterna/Models/HighScore/Replay.cpp b/src/Etterna/Models/HighScore/Replay.cpp index 685dd61b62..833a8ceaa3 100644 --- a/src/Etterna/Models/HighScore/Replay.cpp +++ b/src/Etterna/Models/HighScore/Replay.cpp @@ -2209,12 +2209,16 @@ class LunaReplay : public Luna DEFINE_METHOD(GetChartKey, GetChartKey()) DEFINE_METHOD(GetScoreKey, GetScoreKey()) DEFINE_METHOD(GetReplayType, GetReplayType()) + DEFINE_METHOD(GetRngSeed, GetRngSeed()) + DEFINE_METHOD(GetModifiers, GetModifiers()); LunaReplay() { ADD_METHOD(HasReplayData); ADD_METHOD(GetChartKey); ADD_METHOD(GetScoreKey); ADD_METHOD(GetReplayType); + ADD_METHOD(GetRngSeed); + ADD_METHOD(GetModifiers); ADD_METHOD(GetOffsetVector); ADD_METHOD(GetNoteRowVector); diff --git a/src/Etterna/Models/HighScore/Replay.h b/src/Etterna/Models/HighScore/Replay.h index aa56ab34c2..518dc456d8 100644 --- a/src/Etterna/Models/HighScore/Replay.h +++ b/src/Etterna/Models/HighScore/Replay.h @@ -155,6 +155,10 @@ class Replay void SetSongOffset(float f) { fSongOffset = f; } auto GetGlobalOffset() const -> float { return fGlobalOffset; } void SetGlobalOffset(float f) { fGlobalOffset = f; } + auto GetRngSeed() const -> int { return rngSeed; } + void SetRngSeed(int seed) { rngSeed = seed; } + auto GetModifiers() const -> std::string { return mods; } + void SetModifiers(std::string& modstr) { mods = modstr; } ReplayType GetReplayType() const {