aboutsummaryrefslogtreecommitdiff
path: root/src/nodemetadata.cpp
diff options
context:
space:
mode:
authorJude Melton-Houghton <jwmhjwmh@gmail.com>2021-09-10 17:16:34 -0400
committerGitHub <noreply@github.com>2021-09-10 23:16:34 +0200
commit7423c4c11e01edecd8db18b147bab4d2f3eeb471 (patch)
treef350bf6384750fb5a27995e9db59298a7628f99b /src/nodemetadata.cpp
parent2cefe51d3b9bc4f3ae18854e171a06ea83e9cb25 (diff)
downloadminetest-7423c4c11e01edecd8db18b147bab4d2f3eeb471.tar.xz
Send to clients node metadata that changed to become empty (#11597)
Diffstat (limited to 'src/nodemetadata.cpp')
-rw-r--r--src/nodemetadata.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nodemetadata.cpp b/src/nodemetadata.cpp
index f98732385..b5052c3b8 100644
--- a/src/nodemetadata.cpp
+++ b/src/nodemetadata.cpp
@@ -113,13 +113,13 @@ int NodeMetadata::countNonPrivate() const
*/
void NodeMetadataList::serialize(std::ostream &os, u8 blockver, bool disk,
- bool absolute_pos) const
+ bool absolute_pos, bool include_empty) const
{
/*
Version 0 is a placeholder for "nothing to see here; go away."
*/
- u16 count = countNonEmpty();
+ u16 count = include_empty ? m_data.size() : countNonEmpty();
if (count == 0) {
writeU8(os, 0); // version
return;
@@ -134,7 +134,7 @@ void NodeMetadataList::serialize(std::ostream &os, u8 blockver, bool disk,
i != m_data.end(); ++i) {
v3s16 p = i->first;
NodeMetadata *data = i->second;
- if (data->empty())
+ if (!include_empty && data->empty())
continue;
if (absolute_pos) {