From 1a3868f93371635711bd7a75387700abb785b88a Mon Sep 17 00:00:00 2001 From: Dylan Hall Date: Mon, 8 Jul 2024 11:20:13 -0400 Subject: [PATCH] quick fixes --- .../mitre/synthea/modules/OphthalmicProgressionModule.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/mitre/synthea/modules/OphthalmicProgressionModule.java b/src/main/java/org/mitre/synthea/modules/OphthalmicProgressionModule.java index acea57fb2c..dbf91bd30e 100644 --- a/src/main/java/org/mitre/synthea/modules/OphthalmicProgressionModule.java +++ b/src/main/java/org/mitre/synthea/modules/OphthalmicProgressionModule.java @@ -26,7 +26,7 @@ public Module clone() { public static final Code[] DR_STAGE_CODES = { /* 0 */ new Code("LOINC", "LA18643-9", "No apparent retinopathy"), /* 1 */ new Code("LOINC", "LA18644-7", "Mild non-proliferative retinopathy"), - /* 2 */ new Code("LOINC", "LA18644-7", "Moderate non-proliferative retinopathy"), + /* 2 */ new Code("LOINC", "LA18645-4", "Moderate non-proliferative retinopathy"), /* 3 */ new Code("LOINC", "LA18646-2", "Severe non-proliferative retinopathy"), /* 4 */ new Code("LOINC", "LA18648-8", "Proliferative retinopathy") }; @@ -66,7 +66,7 @@ public boolean process(Person person, long time) { // https://www.mdpi.com/2077-0383/13/3/676 if (highIop || (drStage == 4 && person.rand() < 0.001)) { // very small chance of this happening - person.attributes.getOrDefault("high_iop", true); + person.attributes.put("high_iop", true); if (person.record.medicationActive("1923432") || person.record.medicationActive("861204")) { // dorzolamide 20 MG/ML / timolol 5 MG/ML Ophthalmic Solution