diff --git a/code/modules/mob/abstract/new_player/sprite_accessories.dm b/code/modules/mob/abstract/new_player/sprite_accessories.dm index f53c4559d7d..0c3fe9642f1 100644 --- a/code/modules/mob/abstract/new_player/sprite_accessories.dm +++ b/code/modules/mob/abstract/new_player/sprite_accessories.dm @@ -11,6 +11,9 @@ have to define any UI values for sprite accessories manually for hair and facial hair. Just add in new hair types and the game will naturally adapt. + Notice for novices: Don't use identical variables *twice*, the most recent one written + in an indented string will overwrite all the other ones preceding it. + */ /datum/sprite_accessory @@ -750,36 +753,36 @@ Follow by example and make good judgement based on length which list to include name = "Low Fade" icon_state = "hair_lowfade" gender = MALE - name = "Fade" + chatname = "Fade" medfade name = "Medium Fade" icon_state = "hair_medfade" - name = "Fade" + chatname = "Fade" highfade name = "High Fade" icon_state = "hair_highfade" gender = MALE - name = "Fade" + chatname = "Fade" baldfade name = "Balding Fade" icon_state = "hair_baldfade" gender = MALE - name = "Fade" + chatname = "Fade" nofade name = "No Fade" icon_state = "hair_nofade" gender = MALE - name = "Fade" + chatname = "Fade" trimflat name = "Trimmed Flat Top" icon_state = "hair_trimflat" gender = MALE - name = "Flat-Top" + chatname = "Flat-Top" shaved name = "Shaved" diff --git a/html/changelogs/schev-fadefix-24jul19.yml b/html/changelogs/schev-fadefix-24jul19.yml new file mode 100644 index 00000000000..57551a0ff47 --- /dev/null +++ b/html/changelogs/schev-fadefix-24jul19.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: Scheveningen + +# 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 an issue with Fade variant hairstyles not appearing correctly in character set-up to be chosen. Thank ya, thank ya very much."