Skip to content

Commit

Permalink
Med record quirk fix (tgstation#59150)
Browse files Browse the repository at this point in the history
  • Loading branch information
RaveRadbury authored May 20, 2021
1 parent c195145 commit d0c4cff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/datums/quirks/_quirk.dm
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,13 @@
if(CAT_QUIRK_MAJOR_DISABILITY)
for(var/V in roundstart_quirks)
var/datum/quirk/T = V
if(T.value < -1)
if(T.value < -4)
dat += medical ? T.medical_record_text : T.name
//Minor Disabilities
if(CAT_QUIRK_MINOR_DISABILITY)
for(var/V in roundstart_quirks)
var/datum/quirk/T = V
if(T.value == -1)
if(T.value >= -4 && T.value < 0)
dat += medical ? T.medical_record_text : T.name
//Neutral and Positive quirks
if(CAT_QUIRK_NOTES)
Expand Down

0 comments on commit d0c4cff

Please sign in to comment.