TG: (Does not actually change guns)

Guns with ammo no longer melee at point-blank range.   They now fire normally.
Guns without ammo you bash with.
Revision: r3506
Author: 	 VivianFoxfoot
This commit is contained in:
Erthilo
2012-05-06 18:29:47 +01:00
parent f2777aa65f
commit 1ed9e2ae07

View File

@@ -286,6 +286,21 @@ proc/isInSight(var/atom/A, var/atom/B)
else
return 0
proc/doafterattack(obj/target , obj/source)
if (istype(target, /obj/item/weapon/storage/ ))
return 0
else if (locate (/obj/structure/table, source.loc))
return 0
else if (!istype(target.loc, /turf/))
return 0
else
return 1
proc/check_can_reach(atom/user, atom/target)
if(!in_range(user,target))
return 0