Fix some atmospheric UIs that got broken

Fixes #14805
This commit is contained in:
Bjorn Neergaard
2016-01-23 18:56:36 -06:00
parent e3b073a54a
commit f138da36dc
5 changed files with 9 additions and 9 deletions
@@ -115,7 +115,7 @@
datum/tgui/master_ui = null, datum/ui_state/state = default_state)
ui = SStgui.try_update_ui(user, src, ui_key, ui, force_open)
if(!ui)
ui = new(user, src, ui_key, "atmos_filter", name, 430, 140, master_ui, state)
ui = new(user, src, ui_key, "atmos_filter", name, 470, 140, master_ui, state)
ui.open()
/obj/machinery/atmospherics/components/trinary/filter/get_ui_data()
@@ -126,7 +126,7 @@
datum/tgui/master_ui = null, datum/ui_state/state = default_state)
ui = SStgui.try_update_ui(user, src, ui_key, ui, force_open)
if(!ui)
ui = new(user, src, ui_key, "atmos_mixer", name, 330, 165, master_ui, state)
ui = new(user, src, ui_key, "atmos_mixer", name, 370, 165, master_ui, state)
ui.open()
/obj/machinery/atmospherics/components/trinary/mixer/get_ui_data()