From 43114ebd85e381fb325d327f2458bd6046f699c8 Mon Sep 17 00:00:00 2001 From: Vi3trice <80771500+Vi3trice@users.noreply.github.com> Date: Wed, 12 Oct 2022 07:45:24 -0400 Subject: [PATCH] Admin Maximize Research applies to all tech types (#19320) * That's not used anymore * Nevermind, it could possibly wind up getting used thanks to economy * Update rdconsole.dm --- code/modules/research/rdconsole.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/modules/research/rdconsole.dm b/code/modules/research/rdconsole.dm index e54795ad2e2..f36797e58a7 100644 --- a/code/modules/research/rdconsole.dm +++ b/code/modules/research/rdconsole.dm @@ -160,8 +160,7 @@ won't update every console in existence) but it's more of a hassle to do. Also, files.known_tech[T.id] = T for(var/v in files.known_tech) var/datum/tech/KT = files.known_tech[v] - if(KT.level < KT.max_level) - KT.level=KT.max_level + KT.level = 8 files.RefreshResearch() /obj/machinery/computer/rdconsole/Initialize(mapload)