From 76ec6b83133f286581f051dcb1b3da5a52e30b5b Mon Sep 17 00:00:00 2001 From: paramat Date: Tue, 2 May 2017 01:37:23 +0100 Subject: Clouds: Fix reddish clouds. Add missing alpha update Fix accidental swap of red and blue components that caused reddish clouds Add missing update of alpha in remoteplayer.cpp --- src/remoteplayer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/remoteplayer.cpp') diff --git a/src/remoteplayer.cpp b/src/remoteplayer.cpp index 2b4db62f5..540132978 100644 --- a/src/remoteplayer.cpp +++ b/src/remoteplayer.cpp @@ -68,7 +68,7 @@ RemotePlayer::RemotePlayer(const char *name, IItemDefManager *idef): // copy defaults m_cloud_params.density = 0.4f; - m_cloud_params.color_bright = video::SColor(255, 255, 240, 240); + m_cloud_params.color_bright = video::SColor(229, 240, 240, 255); m_cloud_params.color_ambient = video::SColor(255, 0, 0, 0); m_cloud_params.height = 120.0f; m_cloud_params.thickness = 16.0f; -- cgit v1.2.3