diff options
author | ShadowNinja <shadowninja@minetest.net> | 2014-06-01 13:11:37 -0400 |
---|---|---|
committer | ShadowNinja <shadowninja@minetest.net> | 2014-06-23 15:45:59 -0400 |
commit | e491f8cd485f5602c056b8b6c5e0c8c395e4a633 (patch) | |
tree | 003321151f1c1654bb6d6681a13fbd3c0c4affaa /src/player.h | |
parent | 7e6db1b80344a519e53a9967a159c8d3585a9b9d (diff) | |
download | minetest-e491f8cd485f5602c056b8b6c5e0c8c395e4a633.tar.gz minetest-e491f8cd485f5602c056b8b6c5e0c8c395e4a633.tar.bz2 minetest-e491f8cd485f5602c056b8b6c5e0c8c395e4a633.zip |
Only try to load from possible player files
Diffstat (limited to 'src/player.h')
-rw-r--r-- | src/player.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/player.h b/src/player.h index 098a4d153..93197d374 100644 --- a/src/player.h +++ b/src/player.h @@ -335,7 +335,7 @@ public: RemotePlayer(IGameDef *gamedef): Player(gamedef), m_sao(0) {} virtual ~RemotePlayer() {} - void save(const std::string &savedir); + void save(std::string savedir); PlayerSAO *getPlayerSAO() { return m_sao; } |