diff options
author | lhofhansl <larsh@apache.org> | 2022-12-25 16:15:32 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-25 16:15:32 -0800 |
commit | 1e7804aaf66e2c2a81f81267923621dea17cb274 (patch) | |
tree | 15de0319b559a7679659d66b2b389d71e97352b6 /src/server.cpp | |
parent | afd5caa26a2352c912e1a1976b59e1f89773cdec (diff) | |
download | minetest-1e7804aaf66e2c2a81f81267923621dea17cb274.tar.xz |
Allow saturation to be controlled by the server. (#13075)
Diffstat (limited to 'src/server.cpp')
-rw-r--r-- | src/server.cpp | 1 |
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); } |