aboutsummaryrefslogtreecommitdiff
path: root/src/server.cpp
diff options
context:
space:
mode:
authorlhofhansl <larsh@apache.org>2022-12-25 16:15:32 -0800
committerGitHub <noreply@github.com>2022-12-25 16:15:32 -0800
commit1e7804aaf66e2c2a81f81267923621dea17cb274 (patch)
tree15de0319b559a7679659d66b2b389d71e97352b6 /src/server.cpp
parentafd5caa26a2352c912e1a1976b59e1f89773cdec (diff)
downloadminetest-1e7804aaf66e2c2a81f81267923621dea17cb274.tar.xz
Allow saturation to be controlled by the server. (#13075)
Diffstat (limited to 'src/server.cpp')
-rw-r--r--src/server.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/server.cpp b/src/server.cpp
index 5c3496569..ee08b45fd 100644
--- a/src/server.cpp
+++ b/src/server.cpp
@@ -1864,6 +1864,7 @@ void Server::SendSetLighting(session_t peer_id, const Lighting &lighting)
4, peer_id);
pkt << lighting.shadow_intensity;
+ pkt << lighting.saturation;
Send(&pkt);
}