merges skyrat#2036

This commit is contained in:
Enric Gabriel
2020-07-11 20:39:27 -03:00
parent 3635a93248
commit 6dff5cabd4
2 changed files with 7 additions and 0 deletions
@@ -8,6 +8,7 @@
/mob/living/carbon/human/Initialize()
verbs += /mob/living/proc/mob_sleep
verbs += /mob/living/proc/lay_down
verbs += /mob/living/proc/surrender //Skyrat change
verbs += /mob/living/carbon/human/proc/underwear_toggle //fwee
//initialize limbs first
+6
View File
@@ -377,10 +377,16 @@
. = ..()
if(. && isliving(user))
var/mob/living/L = user
//Skyrat change start
if(L.client?.prefs?.autostand)
if(!(L.combat_flags & COMBAT_FLAG_INTENTIONALLY_RESTING))
TOGGLE_BITFIELD(L.combat_flags, COMBAT_FLAG_INTENTIONALLY_RESTING)
L.DefaultCombatKnockdown(200)
L.Stun(20) //Skyrat Change
L.set_resting(TRUE) //Skyrat change
L.disable_combat_mode(FALSE)
//Skyrat change stop
/datum/emote/living/sway
key = "sway"
key_third_person = "sways"