diff options
Diffstat (limited to 'src/player.h')
-rw-r--r-- | src/player.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/player.h b/src/player.h index e6dfb8199..d6147b208 100644 --- a/src/player.h +++ b/src/player.h @@ -141,7 +141,7 @@ public: deSerialize stops reading exactly at the right point. */ void serialize(std::ostream &os); - void deSerialize(std::istream &is); + void deSerialize(std::istream &is, IGameDef *gamedef); bool touching_ground; // This oscillates so that the player jumps a bit above the surface @@ -185,8 +185,8 @@ public: class ServerRemotePlayer : public Player, public ServerActiveObject { public: - ServerRemotePlayer(): - ServerActiveObject(NULL, v3f(0,0,0)) + ServerRemotePlayer(ServerEnvironment *env): + ServerActiveObject(env, v3f(0,0,0)) { } ServerRemotePlayer(ServerEnvironment *env, v3f pos_, u16 peer_id_, |