diff options
author | Lane Kolbly <lane@rscheme.org> | 2017-09-07 11:57:12 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2017-09-07 11:57:12 +0200 |
commit | dc294cdc51135f38bc4417834e473c8fc4d92b1a (patch) | |
tree | a66378a8ced95ca25bc86e3854eca09910193375 /src/WorldStorage/StatSerializer.h | |
parent | Fire effect now shown for creative and spectator mode players (#3998) (diff) | |
download | cuberite-dc294cdc51135f38bc4417834e473c8fc4d92b1a.tar cuberite-dc294cdc51135f38bc4417834e473c8fc4d92b1a.tar.gz cuberite-dc294cdc51135f38bc4417834e473c8fc4d92b1a.tar.bz2 cuberite-dc294cdc51135f38bc4417834e473c8fc4d92b1a.tar.lz cuberite-dc294cdc51135f38bc4417834e473c8fc4d92b1a.tar.xz cuberite-dc294cdc51135f38bc4417834e473c8fc4d92b1a.tar.zst cuberite-dc294cdc51135f38bc4417834e473c8fc4d92b1a.zip |
Diffstat (limited to '')
-rw-r--r-- | src/WorldStorage/StatSerializer.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/WorldStorage/StatSerializer.h b/src/WorldStorage/StatSerializer.h index 6b7efddbb..8e8e4ffdb 100644 --- a/src/WorldStorage/StatSerializer.h +++ b/src/WorldStorage/StatSerializer.h @@ -25,7 +25,7 @@ class cStatSerializer { public: - cStatSerializer(const AString & a_WorldName, const AString & a_PlayerName, cStatManager * a_Manager); + cStatSerializer(const AString & a_WorldName, const AString & a_PlayerName, const AString & a_FileName, cStatManager * a_Manager); /* Try to load the player statistics. Returns whether the operation was successful or not. */ bool Load(void); @@ -45,6 +45,7 @@ private: cStatManager * m_Manager; + AString m_LegacyPath; // The old <username>.json path to try to read from if the uuid path doesn't exist on load AString m_Path; |