- Fixes multiserver mining

- Removes redundant value on research subsystem
This commit is contained in:
BordListian
2018-02-18 12:42:47 +01:00
parent e1c9dbcac5
commit cc47143bca
2 changed files with 1 additions and 3 deletions
+1 -1
View File
@@ -52,7 +52,7 @@
/obj/machinery/rnd/server/proc/mine()
. = base_mining_income
var/penalty = max((get_env_temp() - temp_tolerance_low), 0) / temp_penalty_coefficient
var/penalty = max((get_env_temp() - temp_tolerance_high), 0) * temp_penalty_coefficient
. = max(. - penalty, 0)
/obj/machinery/rnd/server/proc/get_env_temp()