From 28242a62f7c71b7272dcc3542d3afda958ef8bc9 Mon Sep 17 00:00:00 2001 From: Sym Date: Mon, 16 Aug 2021 21:10:35 -0400 Subject: [PATCH] Fixes minor corrosive acid bug Corrosive acid no longer melts both walls and floors at the same time. Whoops. --- code/game/objects/effects/alien/aliens.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/effects/alien/aliens.dm b/code/game/objects/effects/alien/aliens.dm index d764ef2a40f..bcba1160145 100644 --- a/code/game/objects/effects/alien/aliens.dm +++ b/code/game/objects/effects/alien/aliens.dm @@ -405,8 +405,8 @@ if(iswall(target)) //Gurgs : Spruced up corrosive acid var/turf/simulated/wall/W = target - W.dismantle_wall(1) - if(isfloor(target)) + W.dismantle_wall() + else if(isfloor(target)) var/turf/simulated/floor/T = target T.ex_act(1) else if(isobj(target))