mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-19 19:13:30 +01:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user