Removes explosion immunity from chameleon projector

Being disguised via chameleon projector will no longer cause the user to
shrug off even the nastiest of explosions. The explosion will now break
the illusion AND cause the appropriate strength ex_act on the user.
This commit is contained in:
FalseIncarnate
2015-08-01 05:30:39 -04:00
parent 79613f5121
commit f302506fbd
@@ -115,9 +115,10 @@
M << "<span class='danger'>Your chameleon-projector deactivates.</span>"
master.disrupt()
/obj/effect/dummy/chameleon/ex_act() //ok now THATS some serious protection against explosions right here
/obj/effect/dummy/chameleon/ex_act(var/severity) //no longer bomb-proof
for(var/mob/M in src)
M << "<span class='danger'>Your chameleon-projector deactivates.</span>"
M.ex_act(severity)
master.disrupt()
/obj/effect/dummy/chameleon/bullet_act()