From 9a01252a2add07bd59df1dbfa633261feaff21a1 Mon Sep 17 00:00:00 2001 From: Landerlow Date: Sat, 26 Aug 2017 12:46:46 +0200 Subject: [PATCH] Added the scrambled speech to the list and changed dizziness --- code/modules/client/preference/preferences.dm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/code/modules/client/preference/preferences.dm b/code/modules/client/preference/preferences.dm index 4b7fb81287a..a0a445f59be 100644 --- a/code/modules/client/preference/preferences.dm +++ b/code/modules/client/preference/preferences.dm @@ -830,7 +830,8 @@ var/global/list/special_role_times = list( //minimum age (in days) for accounts HTML += ShowDisabilityState(user,DISABILITY_FLAG_NERVOUS,"Stutter") HTML += ShowDisabilityState(user,DISABILITY_FLAG_SWEDISH,"Swedish accent") HTML += ShowDisabilityState(user,DISABILITY_FLAG_LISP,"Lisp") - HTML += ShowDisabilityState(user,DISABILITY_FLAG_DIZZY,"Suffers from dizziness") + HTML += ShowDisabilityState(user,DISABILITY_FLAG_DIZZY,"Dizziness") + HTML += ShowDisabilityState(user,DISABILITY_FLAG_SCRAMBLED,"Can't speak properly") HTML += {" @@ -2197,6 +2198,9 @@ var/global/list/special_role_times = list( //minimum age (in days) for accounts if(disabilities & DISABILITY_FLAG_DIZZY) character.dna.SetSEState(DIZZYBLOCK,1,1) + if(disabilities & DISABILITY_FLAG_SCRAMBLED) + character.dna.SetSEState(SCRAMBLEBLOCK,1,1) + S.handle_dna(character) if(character.dna.dirtySE)