1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Revert "Fix issue #2441: crash on respawn, since a conversion std::list to std::vector on Environment.cpp"

This reverts parts of commit 9749d9fee6, which breaks node resolver
list clearing
This commit is contained in:
kwolekr 2015-03-20 18:40:18 -04:00
parent d03c2999da
commit 26153bab7d
5 changed files with 12 additions and 11 deletions

View file

@ -91,7 +91,7 @@ public:
private:
u32 m_notify_on;
std::set<u32> *m_notify_on_deco_ids;
std::vector<GenNotifyEvent> m_notify_events;
std::list<GenNotifyEvent> m_notify_events;
};
struct MapgenSpecificParams {