num_emerge_threads: Initialise value to cope with setting syntax error (#8396)
[oweals/minetest.git] / src / remoteplayer.h
index 84978f343a09a8a1eb1f7642309862babccd79bd..ea118e6045c599d68e895a6498ab27169eab7f80 100644 (file)
@@ -71,7 +71,7 @@ public:
 
        void setHotbarImage(const std::string &name) { hud_hotbar_image = name; }
 
-       std::string getHotbarImage() const { return hud_hotbar_image; }
+       const std::string &getHotbarImage() const { return hud_hotbar_image; }
 
        void setHotbarSelectedImage(const std::string &name)
        {
@@ -135,6 +135,12 @@ public:
 
        u16 protocol_version = 0;
 
+       session_t getPeerId() const { return m_peer_id; }
+
+       void setPeerId(session_t peer_id) { m_peer_id = peer_id; }
+
+       void onSuccessfulSave();
+
 private:
        /*
                serialize() writes a bunch of text that can contain
@@ -155,7 +161,7 @@ private:
        float m_chat_message_allowance = 5.0f;
        u16 m_message_rate_overhead = 0;
 
-       bool m_day_night_ratio_do_override;
+       bool m_day_night_ratio_do_override = false;
        float m_day_night_ratio;
        std::string hud_hotbar_image = "";
        std::string hud_hotbar_selected_image = "";
@@ -166,4 +172,6 @@ private:
        bool m_sky_clouds;
 
        CloudParams m_cloud_params;
+
+       session_t m_peer_id = PEER_ID_INEXISTENT;
 };