From f0463106aebf677cd94c96aa4de29c3c5bfc436a Mon Sep 17 00:00:00 2001 From: Morrow Date: Sat, 14 Oct 2023 02:48:57 -0400 Subject: [PATCH] OK --- code/modules/cm_marines/equipment/maps.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/cm_marines/equipment/maps.dm b/code/modules/cm_marines/equipment/maps.dm index eee1437588..9633d18bf3 100644 --- a/code/modules/cm_marines/equipment/maps.dm +++ b/code/modules/cm_marines/equipment/maps.dm @@ -160,7 +160,7 @@ GLOBAL_LIST_INIT_TYPED(map_type_list, /obj/item/map, setup_all_maps()) var/map_name = SSmapping.configs[GROUND_MAP].map_name var/obj/item/map/map = GLOB.map_type_list[map_name] - if (!map && (map_name == MAP_RUNTIME || map_name == MAP_CHINOOK || map_name in SHIP_MAP_NAMES)) + if (!map && (map_name == MAP_RUNTIME || map_name == MAP_CHINOOK || (map_name in SHIP_MAP_NAMES))) return // "Maps" we don't have maps for so we don't need to throw a runtime for (namely in unit_testing) name = map.name desc = map.desc