diff --git a/code/modules/research/rdconsole.dm b/code/modules/research/rdconsole.dm index 90ea97309ed..859d5a20481 100644 --- a/code/modules/research/rdconsole.dm +++ b/code/modules/research/rdconsole.dm @@ -345,7 +345,7 @@ won't update every console in existence) but it's more of a hassle to do. Also, if(being_built) var/power = 2000 var/amount=text2num(href_list["amount"]) - amount = max(10, min(1, amount)) + amount = max(1, min(10, amount)) for(var/M in being_built.materials) power += round(being_built.materials[M] * amount / 5) power = max(2000, power)