diff options
Diffstat (limited to 'src/environment.h')
-rw-r--r-- | src/environment.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/environment.h b/src/environment.h index e0d8d4328..415a9ec31 100644 --- a/src/environment.h +++ b/src/environment.h @@ -33,7 +33,6 @@ with this program; if not, write to the Free Software Foundation, Inc., #include <set> #include <list> #include <map> -#include <queue> #include "irr_v3d.h" #include "activeobject.h" #include "util/numeric.h" @@ -379,7 +378,7 @@ private: // Active object list std::map<u16, ServerActiveObject*> m_active_objects; // Outgoing network message buffer for active objects - std::queue<ActiveObjectMessage> m_active_object_messages_queue; + std::list<ActiveObjectMessage> m_active_object_messages; // Some timers float m_send_recommended_timer; IntervalLimiter m_object_management_interval; |