From 4fa5e0c1bc85e9e46a879ea931ee9862a3414e79 Mon Sep 17 00:00:00 2001 From: Matt Atlas Date: Fri, 8 Sep 2023 22:21:19 +0200 Subject: [PATCH] Fixes openspace shadowing being too light. (#17275) Co-authored-by: Matt Atlas --- code/__defines/zcopy.dm | 2 +- html/changelogs/mattatlas-virtue.yml | 41 ++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/mattatlas-virtue.yml diff --git a/code/__defines/zcopy.dm b/code/__defines/zcopy.dm index 9bc286de921..833c5cffd5f 100644 --- a/code/__defines/zcopy.dm +++ b/code/__defines/zcopy.dm @@ -1,5 +1,5 @@ #define OPENTURF_MAX_PLANE -71 #define OPENTURF_CAP_PLANE -70 // The multiplier goes here so it'll be on top of every other overlay. #define OPENTURF_MAX_DEPTH 10 // The maxiumum number of planes deep we'll go before we just dump everything on the same plane. -#define SHADOWER_DARKENING_FACTOR 0.85 // The multiplication factor for openturf shadower darkness. Lighting will be multiplied by this. +#define SHADOWER_DARKENING_FACTOR 0.7 // The multiplication factor for openturf shadower darkness. Lighting will be multiplied by this. #define SHADOWER_DARKENING_COLOR "#999999" // The above, but as an RGB string for lighting-less turfs. diff --git a/html/changelogs/mattatlas-virtue.yml b/html/changelogs/mattatlas-virtue.yml new file mode 100644 index 00000000000..dc9f923566a --- /dev/null +++ b/html/changelogs/mattatlas-virtue.yml @@ -0,0 +1,41 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: MattAtlas + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - bugfix: "Fixes openspace shadowing being too light."