Merge pull request #12862 from Citadel-Station-13/silicons-patch-44

you can now shoot yourself with a gun by using disarm intent will this cause balance issues maybe do i care not really
This commit is contained in:
Lin
2020-07-27 11:46:37 -05:00
committed by GitHub

View File

@@ -182,7 +182,7 @@
return return
if(!ismob(target) || user.a_intent == INTENT_HARM) //melee attack if(!ismob(target) || user.a_intent == INTENT_HARM) //melee attack
return return
if(target == user && user.zone_selected != BODY_ZONE_PRECISE_MOUTH) //so we can't shoot ourselves (unless mouth selected) if(target == user && user.zone_selected != BODY_ZONE_PRECISE_MOUTH && (user.a_intent != INTENT_DISARM)) //so we can't shoot ourselves (unless mouth selected or disarm intent)
return return
if(iscarbon(target)) if(iscarbon(target))
var/mob/living/carbon/C = target var/mob/living/carbon/C = target