Modifies the moodlet colors slightly (#71181)

## About The Pull Request
Makes the moodlets between neutral and happy_1 use the info span instead
of the gray span
## Why It's Good For The Game
You can actually tell whether your character likes/dislikes the
lower-effect moodlets, and act accordingly.
## Changelog
🆑
qol: slight positive moodlets use a different color to slight negative
ones
/🆑

Co-authored-by: etherware-novice <candy@notarealaddr.com>
This commit is contained in:
texan-down-under
2022-11-23 09:39:10 -08:00
committed by GitHub
co-authored by etherware-novice
parent 88da337472
commit 4fe85d0453
+3 -1
View File
@@ -349,8 +349,10 @@
msg += span_boldwarning(event.description + "\n")
if(MOOD_SAD2 to MOOD_SAD1)
msg += span_warning(event.description + "\n")
if(MOOD_SAD1 to MOOD_HAPPY1)
if(MOOD_SAD1 to MOOD_NEUTRAL)
msg += span_grey(event.description + "\n")
if(MOOD_NEUTRAL to MOOD_HAPPY1)
msg += span_info(event.description + "\n")
if(MOOD_HAPPY1 to MOOD_HAPPY2)
msg += span_nicegreen(event.description + "\n")
if(MOOD_HAPPY2 to INFINITY)