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

🆑
spellcheck: Oldstation rnd notes now update properly when you mix them
together.
/🆑
This commit is contained in:
John Willard
2026-07-07 09:22:56 +02:00
committed by GitHub
parent 2138af3a6f
commit 19dd73127c
@@ -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