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

Change MapBlock content cache to a vector

This commit is contained in:
sfan5 2023-12-12 15:30:26 +01:00
parent cb6e3ac6e1
commit c6cf90f67b
3 changed files with 14 additions and 5 deletions

View file

@ -19,7 +19,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#pragma once
#include <set>
#include <vector>
#include "irr_v3d.h"
#include "mapnode.h"
#include "exceptions.h"
@ -476,7 +476,9 @@ public:
//// ABM optimizations ////
// Cache of content types
std::unordered_set<content_t> contents;
// This is actually a set but for the small sizes we have a vector should be
// more efficient.
std::vector<content_t> contents;
// True if content types are cached
bool contents_cached = false;
// True if we never want to cache content types for this block