From abd22ba09d2a58c332c209eba9cb7334e1de2653 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 17 Jun 2017 15:29:10 -0500 Subject: [PATCH] Fixes badmin repair mapgen module for real this time (#1604) --- code/modules/procedural_mapping/mapGenerators/repair.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/procedural_mapping/mapGenerators/repair.dm b/code/modules/procedural_mapping/mapGenerators/repair.dm index d568b83e80..3a344ac94a 100644 --- a/code/modules/procedural_mapping/mapGenerators/repair.dm +++ b/code/modules/procedural_mapping/mapGenerators/repair.dm @@ -6,7 +6,7 @@ /datum/mapGeneratorModule/bottomLayer/repairFloorPlasteel/place(turf/T) if(isclosedturf(T) && !ignore_wall) return FALSE - return TRUE + return ..() /datum/mapGeneratorModule/bottomLayer/repairFloorPlasteel/flatten ignore_wall = TRUE