Fixes #813. Credit to Aronai

Fixes #813
This commit is contained in:
killer653
2017-01-10 21:30:18 -05:00
parent b19e1e191a
commit 6f95e6e6d3
+4 -8
View File
@@ -427,18 +427,14 @@
else if(prob(absorbchance)) //After that, let's have it run the absorb chance.
R << "<span class='warning'>In responce to your struggling, \the [name] begins to get more active...</span>"
owner << "<span class='warning'>You feel your [name] beginning to become active!</span>"
for(var/K in owner.vore_organs)
var/datum/belly/B = owner.vore_organs[K]
B.digest_mode = DM_ABSORB
return
digest_mode = DM_ABSORB
return
else if(prob(digestchance)) //Finally, let's see if it should run the digest chance.
R << "<span class='warning'>In responce to your struggling, \the [name] begins to get more active...</span>"
owner << "<span class='warning'>You feel your [name] beginning to become active!</span>"
for(var/K in owner.vore_organs)
var/datum/belly/B = owner.vore_organs[K]
B.digest_mode = DM_DIGEST
return
digest_mode = DM_DIGEST
return
else //Nothing interesting happened.
R << "<span class='warning'>But make no progress in escaping [owner]'s [name].</span>"
owner << "<span class='warning'>But appears to be unable to make any progress in escaping your [name].</span>"