Merge branch 'master' into ERT-changes

This commit is contained in:
Birdtalon
2018-10-07 19:22:10 +01:00
257 changed files with 20916 additions and 9006 deletions
+2 -2
View File
@@ -380,7 +380,7 @@ var/static/regex/multispin_words = regex("like a record baby")
else if((findtext(message, sit_words)))
for(var/V in listeners)
var/mob/living/L = V
for(var/obj/structure/stool/bed/chair/chair in get_turf(L))
for(var/obj/structure/chair/chair in get_turf(L))
chair.buckle_mob(L)
break
next_command = world.time + cooldown_meme
@@ -389,7 +389,7 @@ var/static/regex/multispin_words = regex("like a record baby")
else if((findtext(message, stand_words)))
for(var/V in listeners)
var/mob/living/L = V
if(L.buckled && istype(L.buckled, /obj/structure/stool/bed/chair))
if(L.buckled && istype(L.buckled, /obj/structure/chair))
L.buckled.unbuckle_mob(L)
next_command = world.time + cooldown_meme
-2
View File
@@ -86,8 +86,6 @@
if(target_zone == surgery.location)
initiate(user, target, target_zone, tool, surgery)
return 1//returns 1 so we don't stab the guy in the dick or wherever.
if(isrobot(user) && user.a_intent != INTENT_HARM) //to save asimov borgs a LOT of heartache
return 1
return 0
/datum/surgery_step/proc/initiate(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, datum/surgery/surgery)