Many bugfixes!

This commit is contained in:
Cadyn
2020-08-23 19:54:11 -07:00
parent f039e2802e
commit 5e02857320
5 changed files with 10 additions and 5 deletions
@@ -63,7 +63,7 @@
to_chat(user, "<span class='warning'>This syringe is broken!</span>")
return
if(user.a_intent == I_HURT && ismob(target))
if(user.a_intent == I_HURT && ismob(target) && user.type!=/mob/living/silicon/robot)
if((CLUMSY in user.mutations) && prob(50))
target = user
syringestab(target, user)
+1 -1
View File
@@ -482,7 +482,7 @@
var/mob/living/carbon/human/Pred = owner
//Reagent sharing for absorbed with pred - Copy so both pred and prey have these reagents.
Prey.bloodstr.trans_to_holder(Pred.bloodstr, Prey.bloodstr.total_volume, copy = TRUE)
Prey.ingested.trans_to_holder(Pred.bloodstr, Prey.ingested.total_volume, copy = TRUE)
Prey.ingested.trans_to_holder(Pred.ingested, Prey.ingested.total_volume, copy = TRUE)
Prey.touching.trans_to_holder(Pred.bloodstr, Prey.touching.total_volume, copy = TRUE)
// TODO - Find a way to make the absorbed prey share the effects with the pred.
// Currently this is infeasible because reagent containers are designed to have a single my_atom, and we get