mirror of
https://github.com/Sandstorm-Station/Sandstorm-Station-13.git
synced 2026-08-22 20:57:48 +01:00
Merge branch 'master' of https://github.com/Citadel-Station-13/Citadel-Station-13
This commit is contained in:
@@ -405,7 +405,7 @@ SUBSYSTEM_DEF(air)
|
||||
eq_cooldown += (1-delay_threshold) * (cost_equalize / total_thread_time) * 2
|
||||
if(eq_cooldown > 0.5)
|
||||
equalize_enabled = FALSE
|
||||
excited_group_pressure_goal = max(0,excited_group_pressure_goal_target * (1 - delay_threshold))
|
||||
excited_group_pressure_goal = max(0,excited_group_pressure_goal_target * delay_threshold)
|
||||
|
||||
|
||||
/datum/controller/subsystem/air/proc/process_turfs(resumed = 0)
|
||||
|
||||
@@ -53,10 +53,10 @@
|
||||
return
|
||||
beaker = new /obj/item/reagent_containers/glass/beaker/bluespace(src)
|
||||
visible_message("<span class='notice'>[src] dispenses a bluespace beaker.</span>")
|
||||
if("amount")
|
||||
var/input = text2num(params["amount"])
|
||||
if("synth_amount")
|
||||
var/input = text2num(params["synth_amount"])
|
||||
if(input)
|
||||
amount = input
|
||||
amount = max(input, 0)
|
||||
update_icon()
|
||||
|
||||
/obj/machinery/chem_dispenser/chem_synthesizer/proc/find_reagent(input)
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
author: "Putnam3145"
|
||||
delete-after: True
|
||||
changes:
|
||||
- bugfix: "Atmos group processing heuristic no longer does opposite of intent"
|
||||
@@ -33,8 +33,8 @@ export const ChemDebugSynthesizer = (props, context) => {
|
||||
maxValue={beakerMaxVolume}
|
||||
step={1}
|
||||
stepPixelSize={2}
|
||||
onChange={(e, value) => act('amount', {
|
||||
amount: value,
|
||||
onChange={(e, value) => act('synth_amount', {
|
||||
synth_amount: value,
|
||||
})} />
|
||||
<Button
|
||||
icon="plus"
|
||||
|
||||
Reference in New Issue
Block a user