Merge pull request #6660 from uraniummeltdown/monkey

Allows monkeys to use all guns
This commit is contained in:
Fox McCloud
2017-03-05 03:03:45 -05:00
committed by GitHub
+1 -1
View File
@@ -847,7 +847,7 @@
return tally
/mob/living/proc/can_use_guns(var/obj/item/weapon/gun/G)
if(G.trigger_guard != TRIGGER_GUARD_ALLOW_ALL && !IsAdvancedToolUser())
if(G.trigger_guard != TRIGGER_GUARD_ALLOW_ALL && !IsAdvancedToolUser() && !issmall(src))
to_chat(src, "<span class='warning'>You don't have the dexterity to do this!</span>")
return 0
return 1