summaryrefslogtreecommitdiff
path: root/src/clientiface.h
diff options
context:
space:
mode:
authorLoic Blot <loic.blot@unix-experience.fr>2018-03-08 22:58:43 +0100
committerLoïc Blot <nerzhul@users.noreply.github.com>2018-03-09 23:27:26 +0100
commit6036f865cba44fd26374a3a649370f51d5d4ff6c (patch)
treedb455a782214ba65356196bf7fd4dd80ce9174d2 /src/clientiface.h
parentb592c52f1cafa0e668817b0c01347cc7402d035c (diff)
downloadminetest-6036f865cba44fd26374a3a649370f51d5d4ff6c.tar.gz
minetest-6036f865cba44fd26374a3a649370f51d5d4ff6c.tar.bz2
minetest-6036f865cba44fd26374a3a649370f51d5d4ff6c.zip
Drop less performant Server::setBlockNotSent for ClientInterface::markBlockposAsNotSent
Diffstat (limited to 'src/clientiface.h')
-rw-r--r--src/clientiface.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/clientiface.h b/src/clientiface.h
index a7cbc0107..291ccd401 100644
--- a/src/clientiface.h
+++ b/src/clientiface.h
@@ -431,6 +431,9 @@ public:
/* get list of active client id's */
std::vector<session_t> getClientIDs(ClientState min_state=CS_Active);
+ /* mark block as not sent to active client sessions */
+ void markBlockposAsNotSent(const v3s16 &pos);
+
/* verify is server user limit was reached */
bool isUserLimitReached();