From 56b5c68172b13e381a5049b588cb637f8659eefe Mon Sep 17 00:00:00 2001 From: Putnam Date: Tue, 8 Jun 2021 19:15:30 -0700 Subject: [PATCH] the linter is your friend --- code/modules/atmospherics/machinery/portable/scrubber.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/atmospherics/machinery/portable/scrubber.dm b/code/modules/atmospherics/machinery/portable/scrubber.dm index 2caf337e10..672381280b 100644 --- a/code/modules/atmospherics/machinery/portable/scrubber.dm +++ b/code/modules/atmospherics/machinery/portable/scrubber.dm @@ -70,7 +70,7 @@ data["id_tag"] = -1 //must be defined in order to reuse code between portable and vent scrubbers data["filter_types"] = list() for(var/id in GLOB.gas_data) - data["filter_types"] += list(list("gas_id" = id, "gas_name" = GLOB.gas_data[id].name, "enabled" = (id in scrubbing))) + data["filter_types"] += list(list("gas_id" = id, "gas_name" = GLOB.meta_gas_names[id], "enabled" = (id in scrubbing))) if(holding) data["holding"] = list()