diff --git a/code/game/machinery/atmo_control.dm b/code/game/machinery/atmo_control.dm index 80f794c99b7..f9cdf7ef2a8 100644 --- a/code/game/machinery/atmo_control.dm +++ b/code/game/machinery/atmo_control.dm @@ -90,10 +90,10 @@ obj/machinery/air_sensor if(..(user)) return var/html=return_text()+"" - testing("Remember to remove [__FILE__]:[__LINE__]!") - var/f = file("data/gac_debug.html") - fdel(f) - f << html + //testing("Remember to remove [__FILE__]:[__LINE__]!") + //var/f = file("data/gac_debug.html") + //fdel(f) + //f << html user << browse(html,"window=gac") user.set_machine(src) onclose(user, "gac") @@ -447,30 +447,47 @@ legend { return_text() var/output = ..() - - output += "Fuel Injection System
" + output += "
Fuel Injection System (Refresh)" if(device_info) var/power = device_info["power"] var/volume_rate = device_info["volume_rate"] - output += {"Status: [power?("Injecting"):("On Hold")] Refresh
-Rate: [volume_rate] L/sec
"} + output += {" + + + + + + + + + + + + "} if(automation) // AUTOFIXED BY fix_string_idiocy.py // C:\Users\Rob\Documents\Projects\vgstation13\code\game\machinery\atmo_control.dm:372: output += "Automated Fuel Injection: Engaged
" - output += {"Automated Fuel Injection: Engaged
- Injector Controls Locked Out
"} + output += {" + + + "} // END AUTOFIX else // AUTOFIXED BY fix_string_idiocy.py // C:\Users\Rob\Documents\Projects\vgstation13\code\game\machinery\atmo_control.dm:375: output += "Automated Fuel Injection: Disengaged
" - output += {"Automated Fuel Injection: Disengaged
- Injector: Toggle PowerInject (1 Cycle)
"} + output += {" + + + + "} // END AUTOFIX + output += "
Status:[power?"Injecting":"On Hold"]
Rate:[volume_rate] L/sec
Automated Fuel Injection:[automation?"Engaged":"Disengaged"]
Injector Controls Locked Out
Injector:Toggle Power Inject (1 Cycle)
" else - output += "ERROR: Can not find device Search
" + output += {"

ERROR: Can not find device. Search

"} + output += "
" return output