From 0632a8fd7724a02da5e2f1d189b25166ca22ce64 Mon Sep 17 00:00:00 2001 From: death and coding <58394696+thestubborn@users.noreply.github.com> Date: Sun, 31 Oct 2021 18:23:16 +0000 Subject: [PATCH] [nonmodular]adds the modern glasses to the glasses selection (#9150) Co-authored-by: louiseedwardstuart --- code/_globalvars/lists/quirks.dm | 2 +- code/datums/quirks/negative.dm | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/code/_globalvars/lists/quirks.dm b/code/_globalvars/lists/quirks.dm index 5e2e4735bfb..ad12eb2737b 100644 --- a/code/_globalvars/lists/quirks.dm +++ b/code/_globalvars/lists/quirks.dm @@ -1,4 +1,4 @@ ///Lists related to quirk selection ///Types of glasses that can be selected at character selection with the Nearsighted quirk -GLOBAL_LIST_INIT(nearsighted_glasses, list("Regular","Thin","Circle","Hipster")) +GLOBAL_LIST_INIT(nearsighted_glasses, list("Regular","Thin","Circle","Hipster", "Modern")) diff --git a/code/datums/quirks/negative.dm b/code/datums/quirks/negative.dm index 36bf5a68674..eb2bd9ac007 100644 --- a/code/datums/quirks/negative.dm +++ b/code/datums/quirks/negative.dm @@ -297,6 +297,8 @@ glasses = /obj/item/clothing/glasses/regular/circle if ("Hipster") glasses = /obj/item/clothing/glasses/regular/hipster + if ("Modern") + glasses = /obj/item/clothing/glasses/betterunshit else glasses = /obj/item/clothing/glasses/regular