Fixes Blob Tasering

Blobs are no longer harmed by tasers or other strange weapons that don't damage structures.
This commit is contained in:
Neerti
2018-01-17 14:19:16 -05:00
parent b2624f5a2e
commit d2f3ca0a74

View File

@@ -248,7 +248,10 @@ var/list/blobs = list()
if(!P)
return
var/damage = P.damage
var/damage = P.get_structure_damage() // So tasers don't hurt the blob.
if(!damage)
return
switch(P.damage_type)
if(BRUTE)
if(overmind)