From 4a3db27db0c52caa84dab5f47dff21b6248fd0e8 Mon Sep 17 00:00:00 2001 From: SkyMarshal Date: Tue, 19 Jun 2012 21:55:33 -0700 Subject: [PATCH] DERP --- baystation12.dme | 2 +- code/game/turf.dm | 9 ++++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/baystation12.dme b/baystation12.dme index 67c686048e9..0d9209a07ef 100644 --- a/baystation12.dme +++ b/baystation12.dme @@ -1242,5 +1242,5 @@ #include "code\ZAS\Variable Settings.dm" #include "interface\interface.dm" #include "interface\skin.dmf" -#include "maps\Antiqua.dmm" +#include "maps\tgstation.2.0.8.dmm" // END_INCLUDE diff --git a/code/game/turf.dm b/code/game/turf.dm index 7c4240df7ca..370fb7d19dc 100644 --- a/code/game/turf.dm +++ b/code/game/turf.dm @@ -527,8 +527,7 @@ switch(severity) if(1.0) //SN src = null - src.ReplaceWithSpace() - del(src) + ReplaceWithSpace() return if(2.0) if (prob(50)) @@ -1203,14 +1202,14 @@ var/list/plating_icons = list("plating","platingdmg1","platingdmg2","platingdmg3 //set src in oview(1) switch(severity) if(1.0) - src.ReplaceWithSpace() + ReplaceWithSpace() if(2.0) switch(pick(1,2;75,3)) if (1) - src.ReplaceWithLattice() + ReplaceWithLattice() if(prob(33)) new /obj/item/stack/sheet/metal(src) if(2) - src.ReplaceWithSpace() + ReplaceWithSpace() if(3) if(prob(80)) src.break_tile_to_plating()