Fixes minor corrosive acid bug

Corrosive acid no longer melts both walls and floors at the same time. Whoops.
This commit is contained in:
Sym
2021-08-16 21:10:35 -04:00
parent ed7f4b9e75
commit 28242a62f7
+2 -2
View File
@@ -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))