Merge pull request #35792 from DaedalusGame/bitconnect
Fixes multiserver mining formula
This commit is contained in:
committed by
CitadelStationBot
parent
fef23bd7cc
commit
c36f144d9e
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user