shotgun fix goddamn I am stupid as fuck

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@200 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
uhangi@gmail.com
2010-09-28 01:19:35 +00:00
parent 5510426a47
commit 3bda7fd30d
+2 -2
View File
@@ -265,7 +265,7 @@ obj/item/weapon/gun/revolver/attackby(obj/item/weapon/ammo/a357/A as obj, mob/us
if (istype(A, /obj/item/weapon/ammo/bshell))
//var/obj/item/weapon/ammo/bshell/A = B
if ((src.s1 + src.s2) >= 2)
if ((src.s1 > 0 && src.s2 > 0))
user << "\blue It's already fully loaded!"
return 1
else
@@ -283,7 +283,7 @@ obj/item/weapon/gun/revolver/attackby(obj/item/weapon/ammo/a357/A as obj, mob/us
else if (istype(A, /obj/item/weapon/ammo/gshell))
//var/obj/item/weapon/ammo/gshell/A = B
if ((src.s1 + src.s2) >= 2)
if ((src.s1 > 0 && src.s2 > 0))
user << "\blue It's already fully loaded!"
return 1
else