From 19dd73127c775e73f3da21de3265a173ca0399db Mon Sep 17 00:00:00 2001 From: John Willard <53777086+JohnFulpWillard@users.noreply.github.com> Date: Tue, 7 Jul 2026 03:22:56 -0400 Subject: [PATCH] updates research notes (#96818) ## About The Pull Request Updates research notes to take into account current rnd numbers ## Why It's Good For The Game the forgotten research ## Changelog :cl: spellcheck: Oldstation rnd notes now update properly when you mix them together. /:cl: --- code/modules/surgery/operations/operation_dissection.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/surgery/operations/operation_dissection.dm b/code/modules/surgery/operations/operation_dissection.dm index 74c119edd63..4fbb57b0ce5 100644 --- a/code/modules/surgery/operations/operation_dissection.dm +++ b/code/modules/surgery/operations/operation_dissection.dm @@ -126,13 +126,13 @@ /// proc that changes name and icon depending on value /obj/item/research_notes/proc/change_vol() - if(value >= 10000) + if(value >= TECHWEB_TIER_5_POINTS) name = "revolutionary discovery in the field of [origin_type]" icon_state = "docs_verified" - else if(value >= 2500) + else if(value >= TECHWEB_TIER_3_POINTS) name = "essay about [origin_type]" icon_state = "paper_words" - else if(value >= 100) + else if(value >= TECHWEB_TIER_1_POINTS) name = "notes of [origin_type]" icon_state = "paperslip_words" else